diff --git a/cockpit/cockpit.conf b/cockpit/cockpit.conf new file mode 100644 index 00000000..cadd02d0 --- /dev/null +++ b/cockpit/cockpit.conf @@ -0,0 +1,2 @@ +[WebService] +AllowUnencrypted = true \ No newline at end of file diff --git a/cockpit/nginx-proxy.conf b/cockpit/nginx-proxy.conf new file mode 100644 index 00000000..a37c1a59 --- /dev/null +++ b/cockpit/nginx-proxy.conf @@ -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; + } \ No newline at end of file diff --git a/docker/w9appmanage/.env b/docker/w9appmanage/.env index 9f023033..5480d6b2 100644 --- a/docker/w9appmanage/.env +++ b/docker/w9appmanage/.env @@ -1,4 +1,4 @@ APP_NAME=websoft9-appmanage -APP_VERSION=latest +APP_VERSION=0.1.0 APP_HTTP_PORT=5000 APP_NETWORK=websoft9 diff --git a/install/version.json b/install/version.json index f308fe27..da531892 100644 --- a/install/version.json +++ b/install/version.json @@ -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" },