首页
谷子热榜
友情链接
留言板
文章归档
秒答模型
Program社区
1
Visual Studio注册码
2
C# 格式化日期
3
C#根据字符串获取条形码图片
4
SpringBoot Actuator未授权访问漏洞的解决方法
5
.net core集成onlyoffice踩坑记
轨迹
累计撰写
48
篇文章
累计创建
19
个标签
累计收到
7
条评论
栏目
首页
谷子热榜
友情链接
留言板
文章归档
秒答模型
Program社区
搜索
标签搜索
Actuator
OnlyOffice
Java
JQuery
HBuilderX
GitLab
YogaPlay
ChatGpt
接口说明
Excel
ASP.NET
Python
MySQL
Visual Studio
Nginx
AX2012
SQL Server
Linux
Docker
目 录
CONTENT
以下是
Nginx
相关的文章
2023-08-18
在Linux系统下安装Nginx
安装nginx方法一、 直接下载.tar.gz安装包https://nginx.org/en/download.html方法二、使用wget命令下载(推荐)。确保系统已经安装了wget,如果没有安装,执行 yum install wget 安装。(注意:本示例使用方法一)下载包wget https:
2023-08-18
423
0
0
Nginx
Linux
2023-08-18
nginx绑定ssl证书
server{ listen 80; server_name notes.fovigor.com; rewrite ^(.*)$ https://${server_name}$1 permanent; #设置http自动转发https } server{ list
2023-08-18
312
0
0
Nginx
Linux
2023-08-17
nginx报错(error while loading shared libraries: libpcre2-8.so.0)
执行以下命令:yum install pcre2
2023-08-17
328
0
0
Nginx
2023-04-17
linux系统下启停nginx的命令
linux 下面启动nginx 和关闭nginx, 查看linux 开放的所有端口netstat -ntpl,重启服务命令 :service network restart1、进入到安装的目录里面 whereis nginx2、进入该路径:cd /app/nginx/sbin3、启动nginx 命令
2023-04-17
113
0
0
Nginx
2023-03-23
nginx绑定域名
在配置文件中设置例如下面代码即可:server { listen 80; server_name users.mycompany.com; location / { proxy_pass http://localhost:5000; }}
2023-03-23
189
0
0
Nginx