nginx
我不当大哥好多年了
不忘初心,砥砺前行。
展开
-
Nginx动静分离
第一步 安装NginxLinux上安装Nginx 期间很多报错情况./configure && make && make install时候报错如下解决 报这个错 ./configure: error: the HTTP rewrite module requires the PCRE library. 则需要安装pcre-devel解决问题yum -y install pcre-devel原创 2017-12-30 14:19:26 · 225 阅读 · 0 评论 -
Nginx反向代理、配置ssl证书
反向代理配置这个的好处就是端口号本来只能唯一,但是我们通过配置就可以重定向,让我们的非80端口也能使用80端口。server{ listen 80; server_name www.example.com:8081; location / { proxy_pass http://localhost:8081转载 2018-03-03 12:41:26 · 1789 阅读 · 0 评论 -
nginx下载设置
location / { if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx|jpg|png|gif|bmp|jpeg)$){ add_header Content-Disposition: 'attachment;'; }}nginx开启预览autoindex on;gi...原创 2018-05-11 08:46:06 · 578 阅读 · 0 评论