上传大小限制
nginx 默认限制了上传文件的大小 ,修改方法是在http下加个 client_max_body_size
http {
...
#限制为500m
client_max_body_size 500m;
}
转发
转发举例:
server {
listen 8999;
#转发到其他网站 开放8999 默认映射到8888 。根据实际需要 auth->7777 fileManager->8899
location /auth/ {
proxy_pass http://localhost:7777/api/v1/auth/;
}
location /fileManager/ {
proxy_pass http://localhost:8899/api/v1/fileManager/;
}
#其他接口默认访问 8888
location / {
proxy_pass http://localhost:8888/api/v1/;
}
}
未完待续
(额外)service 与 systemctl 区别
service: service命令其实是去/etc/init.d
目录下,去执行相关程序
[root@iZ2ze147skj2icrqqx7nhzZ ~]
aegis bt mysqld network php-fpm-54 README
agentwatch functions netconsole nginx pure-ftpd
在Centos 中 systemctl 是设置系统服务的命令,即 service , 它融合之前service和chkconfig的功能于一体(兼容了service)。