7 Star 73 Fork 55

程序员Mars / mars-frame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 548 Bytes
一键复制 编辑 原始数据 按行查看 历史
程序员Mars 提交于 2021-04-19 18:04 . nginx
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
upstream mars.com{
server localhost:9026;
server localhost:9027;
}
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
proxy_pass http://mars.com;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
1
https://gitee.com/Marsfactory/mars-frame.git
git@gitee.com:Marsfactory/mars-frame.git
Marsfactory
mars-frame
mars-frame
master

搜索帮助