gau1991
10 years ago
1 changed files with 32 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||
|
|||
server { |
|||
|
|||
{{#multisite}} |
|||
# Uncomment the following line for domain mapping |
|||
# listen 80 default_server; |
|||
{{/multisite}} |
|||
|
|||
server_name {{site_name}} {{#multisite}}*{{/multisite}}{{^multisite}}www{{/multisite}}.{{site_name}}; |
|||
|
|||
{{#multisite}} |
|||
# Uncomment the following line for domain mapping |
|||
#server_name_in_redirect off; |
|||
{{/multisite}} |
|||
|
|||
access_log /var/log/nginx/{{site_name}}.access.log {{^static}}rt_cache{{/static}}; |
|||
error_log /var/log/nginx/{{site_name}}.error.log; |
|||
root /var/www/{{site_name}}/htdocs; |
|||
|
|||
index {{^static}}index.php{{/static}} index.html index.htm; |
|||
|
|||
{{#static}} |
|||
location / { |
|||
try_files $uri $uri/ /index.html; |
|||
} |
|||
{{/static}} |
|||
|
|||
include {{#basic}}common/php.conf;{{/basic}}{{#w3tc}}common/w3tc.conf;{{/w3tc}}{{#wpfc}}common/wpfc.conf;{{/wpfc}} {{#wpsc}}common/wpsc.conf;{{/wpsc}} |
|||
{{#wpsubdir}}include common/wpsubdir.conf;{{/wpsubdir}} |
|||
{{#wp}}include common/wpcommon.conf;{{/wp}} |
|||
include common/locations.conf; |
|||
} |
Loading…
Reference in new issue