/** * 打开nginx配置文件nginx.conf,添加以下内容 * 注意层级,在 http{ server { location { #这里添加 } } } 添加 */ location / { try_files $uri $uri/ $uri.php?$args; } ...
分类:
Web程序 时间:
2021-02-17 14:58:17
阅读次数:
0
1.vue配置 /** * * 相对于该配置的nginx服务器请参考nginx配置文件 * */ module.exports = { // 基本路径 publicPath: '/', // 输出文件目录 outputDir: 'dist', // webpack-dev-server 相关配置 d ...
分类:
编程语言 时间:
2021-02-08 11:40:26
阅读次数:
0
当批量更新nginx配置文件是,某些场景中每个服务器都可以使用单独的域名,这时候使用salt批量修改就要使用pillar模块去做变量匹配。下面举例: 编写一个tmp/lyztest.txt。文件传输后匹配变量赋值目标主机b020063的域名为lyz_testb020063.com,实现变量匹配的效果 ...
分类:
其他好文 时间:
2021-01-21 10:41:27
阅读次数:
0
user root; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { #use epoll; worker_connections 65535; } http ...
分类:
系统相关 时间:
2021-01-13 10:45:25
阅读次数:
0
默认的config #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/ngi ...
分类:
其他好文 时间:
2021-01-05 11:39:49
阅读次数:
0
参考帮助文档! 1)全局配置 1、user Syntax: user user [group]; Default: user nobody nobody; Context: main 指定worker进程的运行身份,如组不指定,默认和用户名同名; 2、pid /PATH/TO/PID_FILE 指定 ...
分类:
其他好文 时间:
2020-11-26 14:47:35
阅读次数:
8
cmd 进入Nginx解压目录 执行以下命令 start nginx : 启动nginx服务 nginx -s reload :修改配置后重新加载生效 nginx -s reopen :重新打开日志文件nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确 验 ...
一.Confd介绍Confd是一个集中化配置管理系统,一方面提供统一的本地配置管理,使用etcd或consul存储的数据渲染模板,还支持redis、zookeeper等,另一方面提供配置变更的自动下发,及时生效配置文件。二.confd的部署1.本次测试部署架构etcd保存配置数据confd:confd有一个watch功能,通过HTTPAPI定期监测对应的etcd中目录变化,获取最新的Value,然
分类:
其他好文 时间:
2020-10-18 09:31:26
阅读次数:
21
[root@iZbp13sqw2uxewf87cku6vZconf.d]#vimupstream_dsc.conf#定义upstream服务器组,local_tomcat为upstream的组名。?upstreamlocal_tomcat{server10.29.149.92:8080weight=4;server10.28.141.148:8080weight=4;server127.0.0.1
分类:
其他好文 时间:
2020-10-08 18:37:40
阅读次数:
19
1.安装 Entware-std 打开 https://www.qnapclub.eu/en/qpkg/556 下载系统对应版本安装包并安装到nas里 2.安装nginx 配置文件目录为 /opt/etc/nginx opkg install nginx 3.安装vim 默认vim不支持中文,qna ...
分类:
移动开发 时间:
2020-09-17 22:17:06
阅读次数:
79