Reverse proxy - nginx cannot find redirect issue?
我想大声告诉你
我想大声告诉你 2017-05-16 17:24:08
0
2
481

The domain name points directly to server A. If server A has no resources, it will be rewritten to server B. How to set it up?

我想大声告诉你
我想大声告诉你

reply all(2)
Peter_Zhu

location / {
root /var/www/a.com
if (!-e $request_filename) {
proxy_pass http://b.com;
proxy_store on;
proxy_temp_path /var/www/a.com;
}
}

迷茫

参考如下配置:

server {
listen 80;
server_name _;
charset utf-8,gbk;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
rewrite ^(.*) http://www.xxx.com;
}
}

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!