# Example configuration file for NGINX

      access_log off;
      add_header Cache-Control public;
      server_tokens off;
      server  {
       include    /etc/nginx/proxy_params;
       listen 8000; # will listen on port 8000 and forward to MDAH on port 3002
       keepalive_timeout 70;
       server_name localhost;
       add_header X-Frame-Options SAMEORIGIN;
       location / {
         proxy_pass http://localhost:3002/;
         auth_basic            "Access Restricted";
         auth_basic_user_file  "/etc/nginx/.htpasswd";
         access_log /var/log/nginx/mdah.access.log;
         error_log /var/log/nginx/mdah.error.log;
       }
     }
