nginx
七胜文状元兼参谋将军
这个作者很懒,什么都没留下…
展开
-
nginx代理静态页面
server { listen8991; server_name localhost; location / { root /home/opendata/web/dist; index index.html index.htm; } }原创 2021-12-20 11:02:38 · 3142 阅读 · 0 评论 -
linux上nginx部署
cd /usr/local local下新建文件夹nginx :mkdir nginx(文件夹名) 进入 nginx目录中:cd nginx 第一步:下载nginx压缩包 wget -c https://nginx.org/download/nginx-1.21.0.tar.gz 第二步:配置nginx安装所需的环境 yum install gcc-c++ yum install -y pcre pcre-devel yum install -y zlib zlib-devel yum insta原创 2021-06-11 10:47:15 · 302 阅读 · 1 评论 -
nginx下转发请求
stream { # 添加socket转发的代理 upstream socket_proxy { hash $remote_addr consistent; # 转发的目的地址和端口 server 172.18.1.152:6443 weight=5 max_fails=3 fail_timeout=30s; } # 提供转发的服务,即访问localhost:9001,会跳转至代理socket_proxy指定的转发地址原创 2021-01-19 15:59:38 · 188 阅读 · 0 评论