location /php/ { alias /usr/share/nginx/php/; index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^/php/(.*)$ /php/index.php?s= ...
分类:
其他好文 时间:
2020-07-30 22:05:36
阅读次数:
75
①在项目文件的根目录下新建文件proxy.config.json { "/": { "target": "http://127.0.0.1:3000", "secure": false } } //或者 { "/api": { //适用场景:需要每个请求地址前加个’/api‘ "target": " ...
分类:
其他好文 时间:
2020-07-29 00:44:14
阅读次数:
104
主要目前很简单就是移除nginx request 中的query_string,因为rewrite 阶段处理的是uri ,不包含query_string,但是rewrite 会包含 query_string ,我们可以通过args 变量重写,当然也可以基于openresty 的 ngx.req.se ...
分类:
其他好文 时间:
2020-07-28 00:31:29
阅读次数:
227
目录 一、Nginx是什么 二、Nginx实现反向代理 2.1 正向代理和反向代理 2.2 nginx实现反向代理 2.2.1 proxy_pass配置 2.2.1.1ngx_http_rewrite_module模块 2.2.2 proxy_set_header配置 2.3 nginx实现负载均衡 ...
分类:
其他好文 时间:
2020-07-18 19:51:41
阅读次数:
73
server { listen 80; server_name www.jxc.com; root "D:/phpstudy_pro/WWW/jxc"; location / { index index.php index.html; error_page 400 /error/400.html; ...
分类:
Web程序 时间:
2020-07-18 11:37:07
阅读次数:
114
1:nginx是轻量级,比apache占用更少的内存以及资源 2:apache比nginx的rewrite强大,模块多,bug少,稳定性强, 3:apache对php支持比较简单,nginx需要配合其他后端用,apache组件比nginx多,现在nginx是web服务器的首选 4:最核心的区别是ap ...
分类:
Web程序 时间:
2020-07-15 23:29:41
阅读次数:
87
devServer: { // 端口配置 port: 1888, // 友情提示:改完请重启项目才能生效!!! // 反向代理配置 proxy: { "/api": { //将’/api‘请求转到代理请求’http://192.168.1.125/api‘ target: "http://192.1 ...
分类:
Web程序 时间:
2020-07-15 15:20:40
阅读次数:
92
server { listen 80; server_name www.test.com; rewrite ^(.*)$ https://${server_name}$1 permanent; } server { listen 443; server_name www.test.com; ssl ...
分类:
其他好文 时间:
2020-07-15 13:09:13
阅读次数:
68
本文主要记录在船新的CentOS 8中安装配置.NET Core运行环境以及配合使用的Redis,Redis的安装配置相对比较简单,综合了网上的教程进行实践,并最终完成配置正常使用。废话不多说,开始! 一、安装Redis 1、安装 yum install redis 2、查询本次安装的版本(主要用于 ...
分类:
其他好文 时间:
2020-07-04 13:20:10
阅读次数:
118
https://www.jb51.net/article/99996.htm 本文系统:Centos6.5_x64 三台主机:nginx主机,hostname: master.lansgg.com IP: 192.168.10.128 apache主机,hostname: client1.lansg ...
分类:
Web程序 时间:
2020-07-03 21:08:51
阅读次数:
52