use nginx for ssl & reverse proxy
This commit is contained in:
parent
ba0cc5e911
commit
296651cb67
3 changed files with 22 additions and 12 deletions
|
@ -1,2 +1,3 @@
|
||||||
DB_NAME=guppe
|
DB_NAME=guppe
|
||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
|
PORT_HTTPS=8085
|
||||||
|
|
|
@ -39,8 +39,13 @@ Guppe uses Docker Swarm for easy load balancing Web server replicas
|
||||||
git clone https://github.com/wmurphyrd/guppe.git
|
git clone https://github.com/wmurphyrd/guppe.git
|
||||||
cd guppe
|
cd guppe
|
||||||
cp .env.defaults .env
|
cp .env.defaults .env
|
||||||
echo DOMAIN=yourdomain.com >> .env
|
export DOMAIN=yourdomain.com
|
||||||
|
echo DOMAIN=$DOMAIN >> .env
|
||||||
|
echo ALLOWED_DOMAINS=$DOMAIN >> .env
|
||||||
|
echo SITES='"'$DOMAIN=guppe:8085'"' >> .env
|
||||||
docker swarm init --advertise-addr 127.0.0.1
|
docker swarm init --advertise-addr 127.0.0.1
|
||||||
|
# all on one node for simple setup or split these onto different nodes for a distributed swarm
|
||||||
|
docker node update --label-add web=true --label-add database=true --label-add delivery=true $(hostname)
|
||||||
docker stack deploy --compose-file docker-compose.yml guppe
|
docker stack deploy --compose-file docker-compose.yml guppe
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,28 @@
|
||||||
version: "3.8"
|
version: "3.8"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
proxy:
|
||||||
|
image: valian/docker-nginx-auto-ssl
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
- 443:443
|
||||||
|
volumes:
|
||||||
|
- ssl_data:/etc/resty-auto-ssl
|
||||||
|
env_file: '.env'
|
||||||
guppe:
|
guppe:
|
||||||
image: datatitian/guppe
|
image: datatitian/guppe
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 8
|
replicas: 4
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- "node.labels.type==web"
|
- "node.labels.web==true"
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
|
||||||
- 443:443
|
|
||||||
- 80:80
|
|
||||||
env_file: '.env'
|
env_file: '.env'
|
||||||
environment:
|
environment:
|
||||||
DB_URL: 'mongodb://mongodb:27017'
|
DB_URL: 'mongodb://mongodb:27017'
|
||||||
PORT_HTTPS: 443
|
PROXY_MODE: 1
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongodb
|
- mongodb
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -34,17 +40,15 @@ services:
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
worker1:
|
worker1:
|
||||||
image: datatitian/guppe
|
image: datatitian/guppe
|
||||||
command: [ "node", "deliveryWorker.js" ]
|
command: [ "node", "deliveryWorker.js" ]
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 50
|
replicas: 25
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- "node.labels.type==web"
|
- "node.labels.delivery==true"
|
||||||
restart: always
|
restart: always
|
||||||
env_file: '.env'
|
env_file: '.env'
|
||||||
environment:
|
environment:
|
||||||
|
@ -63,7 +67,7 @@ services:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- "node.labels.type==database"
|
- "node.labels.database==true"
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- mongo-data:/data/db
|
- mongo-data:/data/db
|
||||||
|
|
Loading…
Reference in a new issue