首页
归档
分类
随记
摄影
留言
友链
工具站点
监控面板
Alist网盘
1
网站突然被攻了???
2
2024年6月碎碎念
3
2024年5月碎碎念
4
斐讯K3救砖教程
5
2024年4月碎碎念
恪晨
前端程序员
累计撰写
147
篇文章
累计创建
41
个标签
累计收到
18
条评论
栏目
首页
归档
分类
随记
摄影
留言
友链
工具站点
监控面板
Alist网盘
搜索
标签搜索
MinIO
摄影
监控
青龙
webpack
Halo
mysql
Docker
生活
Nestjs
GridManager
openwrt
其他
群晖Nas
路由器
nodejs
mac
game
正则
脚手架
git
npm
react
nginx
javascript
css
web
面试
博客搭建
hexo
vercel
jenkins
linux
软件
webstorm
markdown
yapi
github
wechat
读书
职场交流
目 录
CONTENT
以下是
nginx
相关的文章
2020-06-11
nginx根据多个端口配置虚拟主机
多个端口配置虚拟主机说的简单点就在在配置文件中的http下配置多个server,如server { listen 80; server_name www.wangboweb.com; location / { root /var/www/html/ index index.ht
2020-06-11
817
0
0
Web
Nginx
2020-05-18
nginx配置反向代理以及适配多端
配置反向代理server { listen 80; server_name www.wangboweb.com; location / { # 显示文件目录而不是解析文件 autoindex on; # 代理到百度 proxy_pass http://www.baidu.c
2020-05-18
430
0
0
Web
Nginx
2020-05-14
nginx访问权限控制
网站中部分文件或者文件夹允许或者禁止用户访问,可以进行自定义配置,例如:server { listen 80; server_name www.wangboweb.com; location / { root /var/www/html/ index index.html }
2020-05-14
291
0
0
Web
Nginx
2020-04-18
nginx安装与基本配置
Nginx安装ubuntu:apt-get install nginxCentosyum install nginx版本nginx官网MainLine Version: 开发者版本Stable Version: 稳定版本Legacy Version: 历史版本基本配置详解(ubuntu为准)# 默认
2020-04-18
763
0
0
Web
Nginx
2020-03-11
nginx多错误指向单页面
默认配置文件地址/etc/nginx/sites-enabled.d/default.conf配置50x与404页面server { listen 80 default_server; listen [::]:80 default_server; # SSL configurati
2020-03-11
495
0
0
Web
Nginx
2020-02-18
nginx配置jenkins代理
安装jenkins与Nginx(ubuntu为例) Nginx: apt-get install nginx Jenkins: apt-get install jenkins登陆jenkins,设置Jenkins Location打开系统配置找到Jenkins Location填入要绑定的j
2020-02-18
384
0
0
Web
Nginx
2020-02-18
nginx配置https
上传Nginx域名证书将Nginx的证书文件夹上传到服务器/etc/nginx/cert文件夹下,cert文件夹自己创建即可,也可上传到其他目录。可使用以下命令直接上传文件:scp -r test.txt root@66.42.36.32:/root/cert文件名:test.txt, 服务器用户
2020-02-18
354
0
0
Web
Nginx
2020-01-18
nginx配置websocket代理以及Gzip压缩
前言在配置Nginx反向代理时,有时候访问的可能时需要websocket,但是Nginx默认是没有开启的,所以需要配置websocket的反向代理。配置内容:http { map $http_upgrade $connection_upgrade { default upg
2020-01-18
466
0
0
Web
Nginx