提问三步曲: 提问先看教程/FAQ索引(wdcp,wdcp_v3,一键包)及搜索,会让你更快解决问题
1 提供详细,如系统版本,wdcp版本,软件版本等及错误的详细信息,贴上论坛或截图发论坛
2 做过哪些操作或改动设置等
温馨提示:信息不详,很可能会没人理你!论坛有教程说明的,也可能没人理!因为,你懂的
本帖最后由 appetrans 于 2013-4-2 13:16 编辑
WDCP新建了1个站点分别是
web\default 80
web\test 81
防火墙增加了81端口访问权限
通过http://ip 访问的默认站点 没有问题
但是通过 http://ip:81 访问test站点后,出现的是默认站点
尝试修改过nginx,apache目录下的test.com.conf
- server {
- listen 81;
- server_name **.**.**.**;
- root /www/web/test/public_html;
- index index.html index.php index.htm;
- error_page 400 /errpage/400.html;
- error_page 403 /errpage/403.html;
- error_page 404 /errpage/404.html;
- error_page 405 /errpage/405.html;
- location ~ \.php$ {
- proxy_pass http://127.0.0.1:88;
- include naproxy.conf;
- }
- location / {
- try_files $uri @apache;
- }
- location @apache {
- proxy_pass http://127.0.0.1:88;
- include naproxy.conf;
- }
- }
复制代码
- <VirtualHost *:81>
- DocumentRoot /www/web/test/public_html
- ServerName
- **.**.**.**
- ErrorDocument 400 /errpage/400.html
- ErrorDocument 403 /errpage/403.html
- ErrorDocument 404 /errpage/404.html
- ErrorDocument 405 /errpage/405.html
- php_admin_value open_basedir /www/web/test:/tmp
- <IfModule mod_deflate.c>
- DeflateCompressionLevel 7
- AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
- AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
- </IfModule>
- </VirtualHost>
- <Directory /www/web/test>
- Options FollowSymLinks
- AllowOverride All
- Order allow,deny
- Allow from all
- </Directory>
复制代码
请问该如何修改? |