1 Star 0 Fork 0

落雨想念/k8sDashboard

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 567 Bytes
一键复制 编辑 原始数据 按行查看 历史
server {
listen 80 default_server;
server_name _;
location / {
include uwsgi_params;
uwsgi_pass 127.0.0.1:3000;
}
location /static {
alias /opt/k8sDashboard/static ;
}
location /ws {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wgy.cn/k8sDashboard.git
git@gitee.com:wgy.cn/k8sDashboard.git
wgy.cn
k8sDashboard
k8sDashboard
master

搜索帮助