tsotnep1

blog.tsotnep.com

Jun 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. server {
  2. listen 80;
  3. root /var/www/blog.tsotnep.com;
  4. index index.php index.html index.htm index.nginx-debian.html;
  5. server_name blog.tsotnep.com www.blog.tsotnep.com;
  6. location / {
  7. try_files $uri $uri/ /index.php$is_args$args;
  8. }
  9.  
  10. location = /favicon.ico { log_not_found off; access_log off; }
  11. location = /robots.txt { log_not_found off; access_log off; allow all; }
  12. location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
  13. expires max;
  14. log_not_found off;
  15. }
  16. }
  17. ~
Add Comment
Please, Sign In to add comment