已经按照网上的教程用WP镜像装了WP博客,现在想用二级域名建立一个论坛,比如博客地址是www,那么我想用bbs的二级域名装一个论坛,应该怎么设置?
小白对ECS一窍不通,如果用两个空间我知道,但是这是同一个主机IP,不知道怎么弄了
tree /home/wwwroot/test
/home/wwwroot
├── bbs
│ └── index.html
└── www
└── index.html
server {
listen 80;
server_name ~^(?<subdomain>.+).test.com$;
access_log /data/wwwlogs/test.com_nginx.log combined;
index index.html index.htm index.php;
root /home/wwwroot/test/$subdomain/;
location ~ .php$ {
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
}
location ~ .*\.(js|css)?$ {
expires 7d;
}
}
server {
listen 80;
server_name www.test.com;
access_log /data/wwwlogs/www.test.com_nginx.log combined;
index index.html index.htm index.php;
root /home/wwwroot/www.test.com;
}
#论坛的配置
server {
listen 80;
server_name bbs.test.com;
access_log /data/wwwlogs/bbs.test.com_nginx.log combined;
index index.html index.htm index.php;
root /home/wwwroot/bbs.test.com;
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。