有些机房不给开8080端口,如何继续使用wdcp的管理面板
wdcp的后台是用到8080端口的,但有些机房不给开8080,怎么办呢?
一 修改成其它端口,如果其它端口也不给开,咋办?看下面
二 通过nginx来跳转(只限于lnamp环境里)
在nginx配置里加个,如下
vi /www/wdlinux/nginx/conf/vhost/wdcp.conf
server {
listen 80;
server_name admin.wdcp.cn;//admin.wdcp.cn替换为你的域名
root /www/wdlinux/wdcp;
index index.php index.htm;
location ~ \.php$ {
proxy_pass http://127.0.0.1:8080;
include naproxy.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
expires 1d;
}
location ~ .*\.(js|css|html|htm)?$ {
expires 12h;
}
location / {
try_files $uri @apache;
}
location @apache {
proxy_pass http://127.0.0.1:8080;
include naproxy.conf;
}
}
重起下nginxd即可
service nginxd restart
本文出自 蓝鹰博客,转载时请注明出处及相应链接。
本文永久链接: http://www.lanyingblog.com/blog/1619.html