Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tsotne@ubuntu-512mb-ams2-01:/etc/nginx/sites-available$ cat blog.tsotnep.com server { listen 80; root /var/www/blog.tsotnep.com; index index.php index.html index.htm index.nginx-debian.html; server_name blog.tsotnep.com www.blog.tsotnep.com; location / { try_files $uri $uri/ /index.php$is_args$args; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { log_not_found off; access_log off; allow all; } location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ { expires max; log_not_found off; } }
Add Comment
Please, Sign In to add comment