services: add Komga
This commit is contained in:
parent
e0d446f9a9
commit
8464695d8c
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -20,6 +20,7 @@ embystat
|
||||||
/airsonic
|
/airsonic
|
||||||
sabnzbd
|
sabnzbd
|
||||||
nzbhydra2
|
nzbhydra2
|
||||||
|
komga
|
||||||
|
|
||||||
/letsencrypt/*
|
/letsencrypt/*
|
||||||
!/letsencrypt/nginx/
|
!/letsencrypt/nginx/
|
||||||
|
|
|
@ -292,3 +292,16 @@ services:
|
||||||
- ~/playlists:/playlists
|
- ~/playlists:/playlists
|
||||||
ports:
|
ports:
|
||||||
- 4040:4040
|
- 4040:4040
|
||||||
|
|
||||||
|
komga:
|
||||||
|
image: gotson/komga
|
||||||
|
container_name: komga
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./komga:/config
|
||||||
|
- ~/comics:/books/comics
|
||||||
|
- ~/manga:/books/manga
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
ports:
|
||||||
|
- 8082:8080
|
||||||
|
user: 1000:1000
|
||||||
|
|
33
letsencrypt/nginx/proxy-confs/komga.subdomain.conf
Normal file
33
letsencrypt/nginx/proxy-confs/komga.subdomain.conf
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# make sure that your dns has a cname set for adguard and that your adguard container is named adguard
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
server_name komga.*;
|
||||||
|
|
||||||
|
include /config/nginx/ssl.conf;
|
||||||
|
|
||||||
|
client_max_body_size 0;
|
||||||
|
|
||||||
|
# enable for ldap auth, fill in ldap details in ldap.conf
|
||||||
|
#include /config/nginx/ldap.conf;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
# enable the next two lines for http auth
|
||||||
|
#auth_basic "Restricted";
|
||||||
|
#auth_basic_user_file /config/nginx/.htpasswd;
|
||||||
|
|
||||||
|
# enable the next two lines for ldap auth
|
||||||
|
#auth_request /auth;
|
||||||
|
#error_page 401 =200 /login;
|
||||||
|
|
||||||
|
include /config/nginx/proxy.conf;
|
||||||
|
resolver 127.0.0.11 valid=30s;
|
||||||
|
set $upstream_app komga;
|
||||||
|
set $upstream_port 8080;
|
||||||
|
set $upstream_proto http;
|
||||||
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue