Compare commits
1 Commits
master2
...
pico-forwa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7c091493f9 |
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
dc_dir={{ docker_compose_base_dir }}
|
dc_dir={{ docker_compose_base_dir }}
|
||||||
nextcloud_base_dir=/var/www/html
|
nextcloud_base_dir={{ nextcloud_base_dir }}
|
||||||
nextcloud_data_dir=/var/www/data
|
nextcloud_data_dir={{ nextcloud_data_dir }}
|
||||||
postgres_db_user={{ postgres_db_user }}
|
postgres_db_user={{ postgres_db_user }}
|
||||||
nextcloud_db_user={{ nextcloud_db_user }}
|
nextcloud_db_user={{ nextcloud_db_user }}
|
||||||
nextcloud_db={{ nextcloud_db }}
|
nextcloud_db={{ nextcloud_db }}
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ services:
|
|||||||
- redis:/data
|
- redis:/data
|
||||||
|
|
||||||
nextcloud:
|
nextcloud:
|
||||||
image: nextcloud:24-fpm-alpine
|
image: nextcloud:22-fpm-alpine
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud_src:/var/www/html
|
- nextcloud_src:/var/www/html
|
||||||
@@ -74,13 +74,11 @@ services:
|
|||||||
# test: ["CMD-SHELL", "wget -q --spider --proxy=off localhost:3000/health || exit 1"]
|
# test: ["CMD-SHELL", "wget -q --spider --proxy=off localhost:3000/health || exit 1"]
|
||||||
|
|
||||||
nextcloud_cron:
|
nextcloud_cron:
|
||||||
image: nextcloud:24-fpm-alpine
|
image: nextcloud:22-fpm-alpine
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud_src:/var/www/html
|
- nextcloud_src:/var/www/html
|
||||||
- nextcloud_data:/var/www/data
|
- nextcloud_data:/var/www/data
|
||||||
- minidlna_data:/var/www/ext/media
|
|
||||||
- /srv:/srv
|
|
||||||
entrypoint: /cron.sh
|
entrypoint: /cron.sh
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
@@ -162,7 +160,7 @@ services:
|
|||||||
- MINIDLNA_INOTIFY=yes
|
- MINIDLNA_INOTIFY=yes
|
||||||
- MINIDLNA_MEDIA_DIR_1=A,/media/audio
|
- MINIDLNA_MEDIA_DIR_1=A,/media/audio
|
||||||
- MINIDLNA_MEDIA_DIR_2=V,/media/video
|
- MINIDLNA_MEDIA_DIR_2=V,/media/video
|
||||||
- MINIDLNA_FRIENDLY_NAME=MiniDLNA@Snackpot
|
- MINIDLNA_FRIENDLY_NAME=Snackpot
|
||||||
|
|
||||||
mopidy:
|
mopidy:
|
||||||
build: ./mopidy
|
build: ./mopidy
|
||||||
|
|||||||
6
templates/docker-compose/proxy/nextcloud.conf
Normal file
6
templates/docker-compose/proxy/nextcloud.conf
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
location ^~ /sites/ {
|
||||||
|
proxy_set_header X-Forwarded-Host $host:$server_port;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Server $host;
|
||||||
|
proxy_pass http://web/index.php/apps/cms_pico/pico_proxy/;
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
upnpip = 192.168.0.243
|
upnpip = 192.168.0.243
|
||||||
|
|
||||||
# media renderer parameters
|
# media renderer parameters
|
||||||
friendlyname = UpMpdCli@Snackpot
|
friendlyname = Snackpot
|
||||||
#upnpav = 1
|
#upnpav = 1
|
||||||
#openhome = 1
|
#openhome = 1
|
||||||
#lumincompat = 0
|
#lumincompat = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user