标题:
[求助]
请教IP加端口访问
[打印本页]
作者:
appetrans
时间:
2013-4-2 13:15
标题:
请教IP加端口访问
本帖最后由 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>
复制代码
请问该如何修改?
作者:
appetrans
时间:
2013-4-2 13:35
应该有其他童鞋也会遇到IP+端口的访问设置问题吧?
作者:
qq514408389
时间:
2013-4-2 14:02
http://www.wdlinux.cn/bbs/thread-1382-1-2.html
作者:
appetrans
时间:
2013-4-2 14:26
回复
3#
qq514408389
谢谢
qq514408389
的回复
这里只说明,如何使用多端口(注意:这个多端口设置,目前只支持lamp,lnmp,暂不支持lnamp)
因为我安装的是lnamp,刚才看完帖子内容后,切换到lamp的模式
通过http://ip:81 访问后,还是原来默认的站点
出现的情况和
christyng
一样
请求帮助
作者:
appetrans
时间:
2013-4-2 14:27
我现在切换到lnmp再试试
作者:
qq514408389
时间:
2013-4-2 15:23
回复
4#
appetrans
你设置完之后要重启下服务器
欢迎光临 WDlinux官方论坛 (http://wdlinux.cn/bbs/)
Powered by Discuz! 7.2