citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

hoogle.nix (479B)


      1 ztip: ''
      2   server {
      3     listen 80;
      4     server_name hoogle.zero.monster.cat;
      5 
      6     location / {
      7       proxy_pass  http://localhost:8080;
      8       proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
      9       proxy_redirect off;
     10       proxy_buffering off;
     11       proxy_set_header        Host            $host;
     12       proxy_set_header        X-Real-IP       $remote_addr;
     13       proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
     14     }
     15   }
     16 ''