mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-21 08:11:50 +02:00
Adapt to codenotary
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
{
|
||||
"apparmor": true,
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armv7"
|
||||
],
|
||||
"arch": ["aarch64", "amd64", "armv7"],
|
||||
"boot": "auto",
|
||||
"codenotary": "alexandrep.github@gmail.com",
|
||||
|
||||
"description": "Full linux desktop environment accessible via any modern web browser",
|
||||
"devices": [
|
||||
"/dev/fuse",
|
||||
@@ -65,11 +61,7 @@
|
||||
"host_dbus": true,
|
||||
"image": "ghcr.io/alexbelgium/webtop-kde-{arch}",
|
||||
"ingress": true,
|
||||
"map": [
|
||||
"media:rw",
|
||||
"share:rw",
|
||||
"ssl"
|
||||
],
|
||||
"map": ["media:rw", "share:rw", "ssl"],
|
||||
"name": "Webtop Alpine KDE",
|
||||
"options": {
|
||||
"DNS_server": "8.8.8.8",
|
||||
@@ -85,11 +77,7 @@
|
||||
"ports_description": {
|
||||
"3000/tcp": "web interface"
|
||||
},
|
||||
"privileged": [
|
||||
"SYS_ADMIN",
|
||||
"DAC_READ_SEARCH",
|
||||
"NET_ADMIN"
|
||||
],
|
||||
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH", "NET_ADMIN"],
|
||||
"schema": {
|
||||
"DNS_server": "str?",
|
||||
"KEYBOARD": "list(da-dk-qwerty|de-de-qwertz|en-gb-qwerty|en-us-qwerty|es-es-qwerty|fr-ch-qwertz|fr-fr-azerty|it-it-qwerty|ja-jp-qwerty|pt-br-qwerty|sv-se-qwerty|tr-tr-qwerty)?",
|
||||
@@ -111,6 +99,7 @@
|
||||
"udev": true,
|
||||
"upstream": "4.16-r0-ls48",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"codenotary": "alexandrep.github@gmail.com",
|
||||
"version": "4.16-r0-ls48",
|
||||
"video": true,
|
||||
"webui": "http://[HOST]:[PORT:3000]"
|
||||
|
||||
@@ -6,12 +6,16 @@ server {
|
||||
server_name webtop.*;
|
||||
|
||||
location / {
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
proxy_pass http://127.0.0.1:3000;
|
||||
proxy_buffering off;
|
||||
proxy_read_timeout 30;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Host $host;
|
||||
}
|
||||
},
|
||||
"codenotary": {
|
||||
"signer": "alexandrep.github@gmail.com"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user