
Nginx
行道念
爸爸很懒,什么都没有写
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Windows Nginx 反向代理 Microsoft SQL Server (MSSQL)
下载Nginx Nginx官网 配置Nginx 配置文件路径:./conf/nginx.conf events { # 只是提供一种结构,说明stream的位置 ...... } http { # 只是提供一种结构,说明stream的位置 ...... } stream{ server{ # 监听本地5000端口 listen 5000; proxy_connect_timeout 120s; proxy_timeout 120s; proxy_pass mssql;原创 2021-10-21 10:02:33 · 1900 阅读 · 0 评论 -
Centos安装、配置nginx
参考 https://www.cnblogs.com/jeffhong99/p/11362361.html 安装nginx [root@localhost~]# yum -y install nginx 安装成功后nginx的几个默认目录 [root@localhost~]# whereis nginx 执行目录:/usr/sbin/nginx 模块所在目录:/usr/lib64/nginx/modules 配置所在目录:/etc/nginx/ 默认站点目录:/usr/share/nginx.原创 2020-09-07 16:56:33 · 192 阅读 · 0 评论