**
nginx的启动和关闭
**
start nginx 启动
nginx -s stop 快速关闭
nginx -s quit 正常关闭
nginx -s reload 重新加载配置文件
**
nginx配置上传文件大小限制
**
在配置文件中找到http{},添加client_max_body_size 1024m;
**
nginx配置代理端口号
在配置文件中配置
**
http {
include mime.types;
default_type application/octet-stream;
client_max_body_size 1024m;
.......
server {
listen 9001;
server_name localhost;
location ~ /eduService/ {
proxy_pass http://localhost:8001;
}
location ~ /eduoss/ {
proxy_pass http://localhost:8002;
}
location ~ /eduvod/ {
proxy_pass http://localhost:8003;
}
}
}