51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

云服务器

nginx配置成系统服务 systemctl

nginx配置成系统服务 systemctl

厉飞雨 阅读(364) 评论(0) 赞(23)

<p>nginx配置成系统服务 systemctl</p> <p>(1) 在`/usr/lib/systemd/system`目录下添加nginx.service,内容如下:</p> <pre><code>vim /usr/lib/systemd/system/nginx.service [Unit] D...

kibana 展示 nginx 接口访问量

kibana 展示 nginx 接口访问量

厉飞雨 阅读(366) 评论(0) 赞(21)

<p>kibana 展示 nginx 接口访问量</p> <p><a href="https://blog.csdn.net/qq_44930876/article/details/128452586">Kibana添加Nginx Dashboard可视化;-CSDN博客</a></p>...

nginx 安全 加固

nginx 安全 加固

厉飞雨 阅读(329) 评论(0) 赞(22)

### 0-针对Nginx SSL协议进行安全加固 Nginx SSL协议采用TLSv1.2: 1、打开`conf/nginx.conf`配置文件(or include file in the main configuration file); 2、配置 server { ... ssl...

nginx 80 标准配置

nginx 80 标准配置

厉飞雨 阅读(477) 评论(0) 赞(18)

<p>nginx 80 标准配置</p> <pre><code>server { listen 80; server_name music.baimeidashu.com; location / { proxy_pass http://localhost:8010; ...

nginx 443 标准配置

nginx 443 标准配置

厉飞雨 阅读(391) 评论(0) 赞(17)

<p>nginx 443 标准配置</p> <pre><code>server { listen 443 ssl; server_name test.baimeidashu.com; ssl_certificate /etc/nginx/ssl_key/test.baimeidashu.com/test.bai...

nginx set 指令 rewitelog

nginx set 指令 rewitelog

厉飞雨 阅读(396) 评论(0) 赞(21)

<p><a href="https://www.jianshu.com/p/3e0be2b21737">nginx配置指令rewrite的last、break、redirect、permanent参数详解 - 简书 (jianshu.com)</a></p> <pre><code>ser...

nginx log 相关

nginx log 相关

厉飞雨 阅读(347) 评论(0) 赞(16)

nginx log server { listen 8191; server_name uat.k8sdashu.cn; location / { proxy_pass http://192.168.1.209:31805; include proxy...

nginx proxy_pass

nginx proxy_pass

厉飞雨 阅读(421) 评论(0) 赞(17)

在编写proxy_pass的时候,后面的值要不要加"/"? #### proxy_set_header 该指令可以更改Nginx服务器接收到的客户端请求的请求头信息,然后将新的请求头发送给代理的服务器 | 语法 | proxy_set_header field value; ...