figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

nginx.conf (229B)


      1 events { }
      2 http {
      3   include /etc/nginx/mime.types;
      4   server_tokens off;
      5   server {
      6     listen 80;
      7     listen [::]:80;
      8     root /usr/share/nginx/html;
      9     error_page 404 /404.html;
     10     default_type application/octet-stream;
     11   }
     12 }