git.fiddlerwoaroof.com
Raw Blame History
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;
	 index headlines.html;

    listen 80;
#	 auth_basic "Restricted";
#	 auth_basic_user_file .htpasswd;

	 location = /robots.txt {
		  allow all;
		  log_not_found off;
		  access_log off;
	 }

}