Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Web ServerIISTomcatComments
glast-ground.slac.stanford.eduglast-win01,glast-win02multiple 
web08.slac.stanford.eduweb08  
aida.freehep.orgweb08scalnx-v03 
aidatld.freehep.orgweb08scalnx-v03Up
exo-data.slac.stanford.eduweb08exolnx-v01 
forum.freehep.orgweb08N/A fudform applicationPage is up, but forum may be down, returns a blank page (was fhforum.slac.stanford.edu)
heprep.freehep.orgweb08scalnx-v03Up
jas.freehep.orgweb08scalnx-v03 
java.freehep.orgweb08scalnx-v03 

lcsim.org, www.lcsim.org

lcsim.freehep.org

web08scalnx-v03lcsim.freehep.org exists as a host name, but the application appears to actually be www.lcsim.org
lelaps.freehep.orgweb08scalnx-v03Up
lp99.freehep.orgweb08 Down, no DNS record- but IIS is still aware of the Application (checked via telnet web08 80: GET / HTTP/1.1\nHost: lp99.freehep.org\n\n)
lsst-camera.slac.stanford.eduweb08

lsstlnx-v01

Up
pingerlod.slac.stanford.eduweb08

scalnx-v06

Up

portal.lsst-desc.org

portal.lsstdesc.org

web08 Up
sid.slac.stanford.eduweb08 Points to exo portal?
srs.slac.stanford.eduweb08 Up
wired1.freehep.orgweb08N/A (on web08)Up
www.freehep.orgweb08N/A (on web08)Up

www-sld.slac.stanford.edu

www-bes.slac.stanford.edu

www-midas.slac.stanford.edu

web08N/A (on web08)Up. Also has www-bes and www-midas, but they all serve the same page.
www-sldnt.slac.stanford.eduweb08scalnx-v03/Also on web08?scalnx-v03, just a blank page
xrdmon.slac.stanford.eduweb08 Worker defined to be xrootd-mon, Not sure if this is on web08 or some other server?

wired4.freehep.org

wired.freehep.org

web08scalnx-v03 
wired2.freehep.orgweb08 Points to web08. No record in IIS. Not sure how this one works? There is a directory on scalnx-v03
forum.linearcollider.orgweb08N/A (web08 

 

NGINX configuration

Code Block
# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/
user  nginx;
worker_processes  1;
error_log  /var/log/nginx16/error.log;
#error_log  /opt/rh/nginx16/root/var/log/nginx/error.log  notice;
#error_log  /opt/rh/nginx16/root/var/log/nginx/error.log  info;
pid        /opt/rh/nginx16/root/var/run/nginx/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /opt/rh/nginx16/root/etc/nginx/mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx16/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
    
    #image cache
    proxy_cache_path /tmp/nginx levels=1:2 keys_zone=imgcache:10m inactive=60m;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    
    # glast-ground.conf, srs.conf, lsst-camera.conf, etc...
    include /opt/rh/nginx16/root/etc/nginx/conf.d/*.conf;

    server {
        listen       8180;
        server_name  localhost;
        location / {
            proxy_pass              http://scalnx-v01.slac.stanford.edu:8180;
            proxy_cache             imgcache;
            proxy_set_header        X-Real-IP $remote_addr;
            proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header        Host $http_host;
        }
    }
}

...