server {
listen 80;
server_name localhost;
location / {
root /ect/share/nginx/html;
index index.html index.htm;
}
#反向代理设置test.html跳转到http:xxxx:xx/test.html
location ~/test.html$ {
proxy_pass http://代理地址;
proxy_redirect default;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_connect_timeout 30;
proxy_send_timeout 60;
proxy_read_timeout 60;
proxy_buffer_size 32k;
proxy_buffering on;
proxy_buffers 4 128k;
proxy_busy_buffers_size 256k;
proxy_max_temp_file_size 256k;
}
#正向代理设置
resolver 8.8.8.8;
location / {
proxy_pass http://$http_host$request_url;
}
}
相关文章
- Nginx配置代理解决本地html进行ajax请求接口跨域问题
- 【宝塔部署SpringBoot前后端不分离项目】含域名访问部署、数据库、反向代理、Nginx等配置
- 浅谈Nginx服务器反向代理的一些应用
- MNMP下nginx1.6开启支持pathinfo配置,支持thinkphp的URL格式
- 配置nginx支持THINKPHP的PATH_INFO
- 基于 Ubuntu 服务器配置原生的 Socks5 网关代理服务器
- Nginx配置基于ip的虚拟主机
- 《深入理解Nginx》阅读与实践(二):配置项的使用
- 主ERROR无法找到记录器配置“测试”的appender“test”
- Nginx 在 Linux 上的安装和配置