2019年6月19日

Module ngx_http_rewrite_module

摘要: http://nginx.org/en/docs/http/ngx_http_rewrite_module.html The ngx_http_rewrite_module module is used to change request URI using PCRE regular express 阅读全文

posted @ 2019-06-19 17:31 四海骄阳 阅读(170) 评论(0) 推荐(0) 编辑

Nginx内置变量以及日志格式变量参数详解

摘要: log_format有一个默认的、无须设置的combined日志格式设置,相当于Apache的combined日志格式,其具体参数如下: log_format combined '$remote_addr-$remote_user [$time_local]' ' "$request" $statu 阅读全文

posted @ 2019-06-19 17:29 四海骄阳 阅读(304) 评论(0) 推荐(0) 编辑

Nginx URL重写(rewrite)配置及信息详解

摘要: URL重写有利于网站首选域的确定,对于同一资源页面多条路径的301重定向有助于URL权重的集中 Nginx URL重写(rewrite)介绍 和apache等web服务软件一样,rewrite的组要功能是实现RUL地址的重定向。Nginx的rewrite功能需要PCRE软件的支持,即通过perl兼容 阅读全文

posted @ 2019-06-19 17:29 四海骄阳 阅读(297) 评论(0) 推荐(0) 编辑

NginxURL重新配置

摘要: server { listen 8080; server_name localhost; rewrite /ljys/kcf(.*) http://192.168.4.139:8080/wuxi-prescription-web/prescribe/passPrescribe$1 permanent 阅读全文

posted @ 2019-06-19 17:28 四海骄阳 阅读(957) 评论(0) 推荐(0) 编辑

Nginx设置成服务并开机自动启动

摘要: 在/etc/init.d下创建文件nginx [root@localhost ~]# vim /etc/init.d/nginx 其内容参考nginx官方文档 需要注意的配置: nginx=”/usr/local/nginx/sbin/nginx” //修改成nginx执行程序的路径。 NGINX_ 阅读全文

posted @ 2019-06-19 08:47 四海骄阳 阅读(8009) 评论(0) 推荐(1) 编辑

导航