Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


In this Discussion

Nginx .conf file for wildcard subdomain to work with wordpress Please Help?
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Nginx .conf file for wildcard subdomain to work with wordpress Please Help?

gooddaygoodday Member
edited December 2011 in General

Hi,

I used centminmod.com script on centos. However, when I tried to creat a wildcard subdomain for wordpress it does not work. However, it only works with with html and not php. Please help by looking at my nginx conf file pasted below. I greatly appreciate!

=====================================================
server {
server_name testsite.com www.testsite.com *.testsite.com;

access_log /home/nginx/domains/testsite.com/log/access.log;
error_log /home/nginx/domains/testsite.com/log/error.log;

root /home/nginx/domains/testsite.com/public;

location / {
try_files $uri $uri/ /index.php?$args;

# Enables directory listings when index file not found
#autoindex on;

# Shows file listing times as local time
#autoindex_localtime on;

# Enable for vBulletin usage WITHOUT vbSEO installed
#try_files / /index.php;

}

include /usr/local/nginx/conf/staticfiles.conf;
include /usr/local/nginx/conf/php.conf;
include /usr/local/nginx/conf/drop.conf;
include /home/nginx/domains/testsite.com/public/nginx.conf;

}

Thanks,

Comments

Sign In or Register to comment.