You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
548 B

# WPSUBDOMAIN W3 TOTAL CACHE NGINX CONFIGURATION
server {
# Uncomment the following line for domain mapping
# listen 80 default_server;
server_name example.com *.example.com;
# Uncomment the following line for domain mapping
#server_name_in_redirect off;
access_log /var/log/nginx/example.com.access.log rt_cache;
error_log /var/log/nginx/example.com.error.log;
root /var/www/example.com/htdocs;
index index.php index.htm index.html;
include common/w3tc.conf;
include common/wpcommon.conf;
include common/locations.conf;
}