type
status
date
slug
summary
tags
category
icon
password
安装nginx
yum -y install nginx
启动
service nginx start
停止
service nginx stop
重启
service nginx restart
测试nginx配置
nginx -t
配置文件目录
/etc/nginx/nginx.conf
index 路径
/usr/share/nginx/html
负载均衡
- 在
nginx.conf
下添加:
- 在
nginx.conf
中有include /etc/nginx/conf.d/*.conf;
,去conf.d文件夹下添加自定义配置文件
静态代理
在
nginx.conf
中有 include /etc/nginx/conf.d/*.conf;
,去conf.d文件夹下添加自定义配置文件(随意命名,只要是.conf
结尾即可。)需要在域名解析中添加相应的二级域名解析。https
主要配置如下,
location
和http
一样支持全站加密,在 http 的 server 里增加
rewrite ^(.*) https://$host$1 permanent;
如果需要做 https 下的反向代理
错误处理
FTP
只需在
location
中配置: