Advertisement
METAJIJI

domain.ltd_http.conf

Mar 14th, 2015
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.51 KB | None | 0 0
  1. server {
  2. #-------------------------- Options --------------------------#
  3.     listen 80;
  4.     server_name test.domain.ltd;
  5.     root /var/www/test.domain.ltd;
  6.  
  7. # Logs
  8.     access_log /var/log/nginx/test.domain.ltd_http_access.log;
  9.     error_log /var/log/nginx/test.domain.ltd_http_error.log;
  10.  
  11.  
  12. # Includes
  13.     include common_config/favicon_empty.conf;
  14.     include common_config/security.conf;
  15.     include common_config/ua_deprecated.conf;
  16.  
  17.  
  18. # Options
  19.     try_files $uri $uri/ =404;
  20.     index index.html index.htm;
  21.  
  22.     location / {
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement