git.fiddlerwoaroof.com
rawdog.nginx.conf
564b85e6
 
7a9d53ed
 server {
 	 server_name planet.joinmarrow.com;
 	 access_log /var/log/nginx/planet.joinmarrow.com.access.log combined;
 	 error_log /var/log/nginx/planet.joinmarrow.com.error.log error;
 
 	 root /home/edwlan/.rawdog/output;
     try_files $uri.html $uri $uri/ @notfound;
564b85e6
 	 index headlines.html;
7a9d53ed
 
     listen 80;
 #	 auth_basic "Restricted";
 #	 auth_basic_user_file .htpasswd;
 
 	 location = /robots.txt {
 		  allow all;
 		  log_not_found off;
 		  access_log off;
 	 }
 
 }