server { listen 80; server_name 127.0.0.1;#charset koi8-r;#access_log logs/host.access.log main;location /{ proxy_pass http://paila; proxy_redirect of...
分类:
其他好文 时间:
2015-10-12 10:35:51
阅读次数:
158
1. 反向代理时携带真实IP: location / { proxy_pass http://bsp.bioeh.com; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; pro...
分类:
其他好文 时间:
2015-09-02 13:10:21
阅读次数:
238
1)proxy_pass末尾不带”/”server {
listen 80;
server_name www.baidu.com; location /hello/
{
proxy_pass http://server:8080;
}
}2)proxy_pass末尾带”/”server {
listen 80;
server_...
分类:
其他好文 时间:
2015-08-31 17:27:48
阅读次数:
118
location / project ??? {???? ?? ????? proxy_pass http://localhost:8081/project;? ? ? ? ?proxy_set_header Host $host:$server_port; ??????? proxy_set_header X-Real-IP $remo...
分类:
其他好文 时间:
2015-08-13 20:37:12
阅读次数:
162
server {listen 443;server_name mail.jb51.net;ssl on;ssl_certificate server.crt;ssl_certificate_key server.key;location / { proxy_pass https://192.1...
分类:
Web程序 时间:
2015-07-13 18:17:36
阅读次数:
165
nginx作为web服务器一个重要的功能就是反向代理。nginx反向代理的指令不需要新增额外的模块,默认自带proxy_pass指令,只需要修改配置文件就可以实现反向代理。 配置前的准备工作,后端跑apache服务的ip和端口,也...
分类:
其他好文 时间:
2015-07-02 15:57:35
阅读次数:
139
#虽然都是location但是是有区别的#设置首页location = / { proxy_pass http://127.0.0.1/site/eshop/home.html; proxy_set_header Host $host; proxy_set_heade...
分类:
Web程序 时间:
2015-06-29 19:24:38
阅读次数:
172
一直以来我都是用nginx1.5.7来作为web服务器和代理服务器来使用,一直都是一个应用对应一个Tomcat也就是一个端口,也只对应一个域名。
今天把服务器上的Tomcat整合了一下,5个应用共用一个Tomcat。
最先出现的问题是,用户等进入后台时出现异常,找不到登录的用户信息!...
分类:
其他好文 时间:
2015-06-29 17:07:49
阅读次数:
195
昨天尝试用nginx搭建nuget镜像服务器,镜像服务器需要两个功能:1)反向代理;2)内容缓存。用nginx做反向代理,配置非常简单,只需在/etc/nginx/nginx.conf中添加一个包含proxy_pass的server设置。而添加缓存功能,配置稍微复杂些。
分类:
其他好文 时间:
2015-06-24 12:40:47
阅读次数:
151