# WPSUBDOMAIN BASIC 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; location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { try_files $uri =404; include fastcgi_params; fastcgi_pass php; } include common/wpcommon.conf; include common/locations.conf; }