博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx学习之反向代理
阅读量:5942 次
发布时间:2019-06-19

本文共 1523 字,大约阅读时间需要 5 分钟。

配置静态网站

server {        listen       80;        server_name  localhost;        location /{            root    html; #默认Nginx站点            index  index.html index.htm;        }        location ^~ /itstyle/{            alias    /www/itstyle/; #自定义站点,注意都是以斜杠结尾 文件路径自定义不一定是itstyle            index  index.html index.htm;        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {              root   html;        }

配置动态网站

配置JSP

server {        listen       80;        server_name  blog.52itstyle.com;        location / {            index  index.jsp;            #Tomcat访问地址            proxy_pass http://127.0.0.1:8080;         }        location /solr {             #类似虚拟目录 指向一个具体项目             proxy_pass http://127.0.0.1:8180$request_uri;        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }    }

配置PHP

server{        listen 80;        server_name 52itstyle.com www.52itstyle.com;        root /mnt/www/domains/52itstyle.com/public_html;        index index.php index.html;        error_page  404 = http://www.52itstyle.com/404.html; location = /500.html {        root   /usr/share/nginx/html; }       location ~ \.php$ {           fastcgi_pass 127.0.0.1:9000;           include        fastcgi_params;           fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;           access_log     /usr/local/nginx/logs/52itstyle.com.access.log main;#日志      }      location ~ /\.ht {           deny  all;#拒绝访问htaccess文件      }}

转载地址:http://vfhtx.baihongyu.com/

你可能感兴趣的文章
Android仿QQ列表滑动弹出按钮、长按提示、刷新列表
查看>>
phpcms v9 数据库操作函数
查看>>
tomcat
查看>>
我的友情链接
查看>>
java中map使用非系统类作为key
查看>>
JVM(2)之 JAVA堆
查看>>
乔布斯的离开
查看>>
Java学习笔记(43)——Java泛型
查看>>
行业发展之关于有用信息和无用信息的思考
查看>>
My97DatePicker
查看>>
sae上部署第一个站
查看>>
谈谈你对摩尔定律的理解,摩尔定律当前还是继续有效的吗?
查看>>
mysql dblink 链接mysql库
查看>>
grub resource>unknown filesystem异常处理
查看>>
ways of make process to background job
查看>>
【译】①JWS之Java[tm] Web Start开发者指南目录
查看>>
Oracle date 和 timestamp 区别
查看>>
backtrack笔记本无法用Fn调亮度
查看>>
20返回指针的函数与指向函数的指针
查看>>
域名无法加入域解决方法
查看>>