Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name hoteles.eltoque.com;
  4. root /var/www/hoteles.eltoque.com;
  5. index index.html index.htm;
  6. pagespeed on;
  7.  
  8. location / {
  9. default_type "text/html";
  10. try_files $uri.html $uri $uri/ /index.html;
  11. }
  12.  
  13. location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
  14. add_header Cache-Control "public, max-age=600";
  15. }
  16.  
  17. access_log /var/log/nginx/hoteles.eltoque.com/access.log;
  18. error_log /var/log/nginx/hoteles.eltoque.com/error.log;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement