Experimental setup with dedicated httpd service
This commit is contained in:
@@ -1,8 +1,48 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
httpd:
|
||||||
|
image: httpd:alpine
|
||||||
|
dns:
|
||||||
|
- 1.1.1.1
|
||||||
|
- 1.0.0.1
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
{{- if .Values.HOST_LABEL}}
|
||||||
|
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||||
|
{{- end}}
|
||||||
|
{{- if .Values.TRAEFIK_HOST}}
|
||||||
|
traefik.enable: true
|
||||||
|
traefik.frontend.rule: Host:${TRAEFIK_HOST}
|
||||||
|
traefik.frontend.entryPoints: http # ,https
|
||||||
|
# traefik.frontend.headers.forceSTSHeader: true
|
||||||
|
# traefik.frontend.headers.SSLRedirect: true
|
||||||
|
# traefik.frontend.headers.STSPreload: true
|
||||||
|
# traefik.frontend.headers.STSSeconds: 15552000
|
||||||
|
traefik.port: "80"
|
||||||
|
{{- else}}
|
||||||
|
traefik.enable: false
|
||||||
|
{{- end}}
|
||||||
|
links:
|
||||||
|
- mysql
|
||||||
|
- nextcloud
|
||||||
|
{{- if eq .Values.REDIS "true"}}
|
||||||
|
- redis
|
||||||
|
{{- end}}
|
||||||
|
networks:
|
||||||
|
- public-proxy
|
||||||
|
ports:
|
||||||
|
- "${WEB_PORT}:80"
|
||||||
|
restart: on-failure
|
||||||
|
volumes:
|
||||||
|
- /RancherCattleData/${DATA_DIR}/Application:/usr/local/apache2/htdocs
|
||||||
|
- /RancherCattleConfig/${DATA_DIR}/httpd:/usr/local/apache2/conf
|
||||||
|
- /RancherCattleData/${DATA_DIR}/Application:/var/www/html
|
||||||
|
- /RancherCattleData/${DATA_DIR}/Database:/var/lib/mysql
|
||||||
|
- /RancherCattleData/${DATA_DIR}/UserData:/var/www/html/data
|
||||||
|
|
||||||
nextcloud:
|
nextcloud:
|
||||||
image: nextcloud:stable-apache
|
image: nextcloud:fpm-alpine
|
||||||
dns:
|
dns:
|
||||||
- 1.1.1.1
|
- 1.1.1.1
|
||||||
- 1.0.0.1
|
- 1.0.0.1
|
||||||
@@ -18,31 +58,11 @@ services:
|
|||||||
{{- if .Values.HOST_LABEL}}
|
{{- if .Values.HOST_LABEL}}
|
||||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
{{- if .Values.TRAEFIK_HOST}}
|
|
||||||
traefik.enable: true
|
|
||||||
traefik.frontend.rule: Host:${TRAEFIK_HOST}
|
|
||||||
traefik.frontend.entryPoints: http,https
|
|
||||||
traefik.frontend.headers.forceSTSHeader: true
|
|
||||||
traefik.frontend.headers.SSLRedirect: true
|
|
||||||
traefik.frontend.headers.STSPreload: true
|
|
||||||
traefik.frontend.headers.STSSeconds: 15552000
|
|
||||||
traefik.port: "80"
|
|
||||||
{{- else}}
|
|
||||||
traefik.enable: false
|
|
||||||
{{- end}}
|
|
||||||
links:
|
|
||||||
- mysql
|
|
||||||
{{- if eq .Values.REDIS "true"}}
|
|
||||||
- redis
|
|
||||||
{{- end}}
|
|
||||||
networks:
|
networks:
|
||||||
- public-proxy
|
- public-proxy
|
||||||
ports:
|
|
||||||
- "${WEB_PORT}:80"
|
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
volumes:
|
volumes-from:
|
||||||
- /RancherCattleData/${DATA_DIR}/Application:/var/www/html
|
- httpd
|
||||||
- /RancherCattleData/${DATA_DIR}/UserData:/var/www/html/data
|
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql:5
|
image: mysql:5
|
||||||
dns:
|
dns:
|
||||||
@@ -60,7 +80,9 @@ services:
|
|||||||
{{- end}}
|
{{- end}}
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
volumes:
|
volumes:
|
||||||
- /RancherCattleData/${DATA_DIR}/Database:/var/lib/mysql
|
|
||||||
|
volumes-from:
|
||||||
|
- httpd
|
||||||
{{- if eq .Values.REDIS "true"}}
|
{{- if eq .Values.REDIS "true"}}
|
||||||
redis:
|
redis:
|
||||||
image: redis:latest
|
image: redis:latest
|
||||||
|
|||||||
@@ -77,20 +77,12 @@ catalog:
|
|||||||
label: "Data Directory"
|
label: "Data Directory"
|
||||||
description: |
|
description: |
|
||||||
The directory to store persistent data for the stack.
|
The directory to store persistent data for the stack.
|
||||||
default: "Personal/Nextcloud"
|
default: "Personal/Nextcloud-Experimental"
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
services:
|
services:
|
||||||
nextcloud:
|
nextcloud:
|
||||||
scale: 1
|
scale: 1
|
||||||
# health_check:
|
|
||||||
# port: ${HOST_HTTP_PORT}
|
|
||||||
# request_line: GET /healthcheck HTTP/1.0
|
|
||||||
# interval: 5000
|
|
||||||
# response_timeout: 2000
|
|
||||||
# healthy_threshold: 2
|
|
||||||
# unhealthy_threshold: 3
|
|
||||||
# strategy: none
|
|
||||||
mysql:
|
mysql:
|
||||||
scale: 1
|
scale: 1
|
||||||
Reference in New Issue
Block a user