cockpit set

This commit is contained in:
qiaofeng1227 2023-06-01 11:53:32 +08:00
parent bea78b977e
commit 60d4e45f81
4 changed files with 25 additions and 5 deletions

2
cockpit/cockpit.conf Normal file
View file

@ -0,0 +1,2 @@
[WebService]
AllowUnencrypted = true

17
cockpit/nginx-proxy.conf Normal file
View file

@ -0,0 +1,17 @@
location /panel/ {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://172.17.0.1:9090;
# Required for web sockets to function
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Pass ETag header from Cockpit to clients.
# See: https://github.com/cockpit-project/cockpit/issues/5239
gzip off;
}

View file

@ -1,4 +1,4 @@
APP_NAME=websoft9-appmanage
APP_VERSION=latest
APP_VERSION=0.1.0
APP_HTTP_PORT=5000
APP_NETWORK=websoft9

View file

@ -1,18 +1,19 @@
{
"PORTAINER": {
"PORTAINER_PLUGIN_VERSION": "0.1.0",
"PORTAINER_PLUGIN_VERSION": "1.0.0",
"PORTAINER_IMAGE_VERSION": "2.18.3"
},
"NGINXPROXYMANAGER": {
"NGINXPROXYMANAGER_PLUGIN_VERSION": "0.1.0",
"NGINXPROXYMANAGER_PLUGIN_VERSION": "1.0.0",
"NGINXPROXYMANAGER_IMAGE_VERSION": "2.10.3"
},
"KOPIA": {
"KOPIA_PLUGIN_VERSION": "0.1.0",
"KOPIA_PLUGIN_VERSION": "1.0.0",
"KOPIA_IMAGE_VERSION": "0.13"
},
"APPMANAGE": {
"APPMANAGE_PLUGIN_VERSION": "0.1.0",
"APPSTORE_PLUGIN_VERSION": "1.0.0",
"MYAPPS_PLUGIN_VERSION": "1.0.0",
"APPMANAGE_IMAGE_VERSION": "0.1.0",
"REDIS_IMAGE_VERSION": "7.0.11"
},