- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
1.nginx/conf目录中创建文件proxy.conf以方便在建立站点的时候引用
proxy_connect_timeout 300s;
proxy_send_timeout 900;
proxy_read_timeout 500;
proxy_buffer_size 32k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_redirect off;
proxy_hide_header Vary;
proxy_set_header Accept-Encoding '';
proxy_set_header host $host;
proxy_set_header Referer $http_referer;
proxy_set_header Cookie $http_cookie;
proxy_set_header X-Real-Ip $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
expires 10d;
2.建立站点
server{
listen 80;
#listen [::]:80;
server_name www.landui.com website.com;
index index.html index.htm index.php default.html default.htm default.php index.asp default.asp;
location / {
#ModSecurityEnabled off;
#ModSecurityConfig modsecurity.conf;
}
location ~ .*.(php)(.*){
proxy_pass http://www.landui.com;
include /etc/nginx/proxy.d/proxy.conf;
}
location ~ .*.(asp)(.*){
proxy_pass http://www.landui.com;
include /etc/nginx/proxy.d/proxy.conf;
}
location ~ .*.(gif|jpg|png|htm|html|css|js|flv|ico|swf)(.*) {
#include cache.conf;
proxy_pass http://www.landui.com ;
include /etc/nginx/proxy.d/proxy.conf;
}
}
注:代理只是一个中介服务,归根揭底还是要被代理的服务能正常访问还要代理的服务配置正确
售前咨询
售后咨询
备案咨询
二维码
TOP