
nginx
iteye_10222
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx 禁止特定目录执行php
location ~^/pup/upload/.*.(php|php5)$ { deny all; } location ~^/pup/ueditor/.*.(php|php5)$ { deny all; }原创 2016-11-02 14:37:51 · 867 阅读 · 0 评论 -
nginx 配置https
1: https nginx 配置 server { listen 443; server_name localhost; ssl on; root html; index index.html index.htm; ssl_certificate cert/214004005650936.pem; ssl_...原创 2017-02-16 17:43:30 · 260 阅读 · 0 评论