mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-02 22:04:06 +02:00
Adapt to codenotary
This commit is contained in:
@@ -3,5 +3,8 @@
|
||||
"aarch64": "lscr.io/linuxserver/ubooquity:arm64v8-latest",
|
||||
"amd64": "lscr.io/linuxserver/ubooquity:amd64-latest",
|
||||
"armv7": "lscr.io/linuxserver/ubooquity:arm32v7-latest"
|
||||
},
|
||||
"codenotary": {
|
||||
"signer": "alexandrep.github@gmail.com"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
{
|
||||
"apparmor": true,
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armv7"
|
||||
],
|
||||
"arch": ["aarch64", "amd64", "armv7"],
|
||||
"boot": "auto",
|
||||
"description": "Free, lightweight and easy-to-use home server for your comics and ebooks",
|
||||
"devices": [
|
||||
@@ -40,12 +36,7 @@
|
||||
"/dev/nvme2"
|
||||
],
|
||||
"environment": {},
|
||||
"map": [
|
||||
"media:rw",
|
||||
"config:rw",
|
||||
"share:rw",
|
||||
"ssl"
|
||||
],
|
||||
"map": ["media:rw", "config:rw", "share:rw", "ssl"],
|
||||
"name": "Ubooquity",
|
||||
"options": {
|
||||
"PGID": 0,
|
||||
@@ -64,10 +55,7 @@
|
||||
"2205/tcp": "Library page (to expose)",
|
||||
"2206/tcp": "Admin page (local)"
|
||||
},
|
||||
"privileged": [
|
||||
"SYS_ADMIN",
|
||||
"DAC_READ_SEARCH"
|
||||
],
|
||||
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
|
||||
"schema": {
|
||||
"PGID": "int",
|
||||
"PUID": "int",
|
||||
@@ -87,6 +75,7 @@
|
||||
"startup": "services",
|
||||
"upstream": "2.1.2",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"codenotary": "alexandrep.github@gmail.com",
|
||||
"version": "2.1.2-8",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:2206]/ubooquity/admin"
|
||||
}
|
||||
|
||||
@@ -1,11 +1,15 @@
|
||||
server {
|
||||
listen %%interface%%:%%port%% default_server;
|
||||
include /etc/nginx/includes/server_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
client_max_body_size 0;
|
||||
|
||||
location / {
|
||||
set $upstream_port 2202;
|
||||
proxy_pass http://127.0.0.1:$upstream_port;
|
||||
}
|
||||
},
|
||||
"codenotary": {
|
||||
"signer": "alexandrep.github@gmail.com"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
server {
|
||||
listen %%interface%%:2205 default_server;
|
||||
include /etc/nginx/includes/server_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
client_max_body_size 0;
|
||||
location / {
|
||||
set $upstream_port 2202;
|
||||
@@ -11,13 +11,13 @@ server {
|
||||
set $upstream_port 2202;
|
||||
proxy_pass http://127.0.0.1:$upstream_port;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
server {
|
||||
listen %%interface%%:2206 default_server;
|
||||
include /etc/nginx/includes/server_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
client_max_body_size 0;
|
||||
location /ubooquity/admin {
|
||||
set $upstream_port 2203;
|
||||
@@ -32,5 +32,9 @@ server {
|
||||
location /ubooquity/admin-api {
|
||||
set $upstream_port 2203;
|
||||
proxy_pass http://127.0.0.1:$upstream_port;
|
||||
}
|
||||
},
|
||||
"codenotary": {
|
||||
"signer": "alexandrep.github@gmail.com"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user