forked from Hay1tsme/artemis
docker: add nginx in docker compose file
This commit is contained in:
@ -6,6 +6,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./aime:/app/aime
|
- ./aime:/app/aime
|
||||||
- ./configs/config:/app/config
|
- ./configs/config:/app/config
|
||||||
|
- ./cert:/app/cert
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
CFG_DEV: 1
|
CFG_DEV: 1
|
||||||
@ -15,6 +16,7 @@ services:
|
|||||||
CFG_CORE_AIMEDB_KEY: <INSERT AIMEDB KEY HERE>
|
CFG_CORE_AIMEDB_KEY: <INSERT AIMEDB KEY HERE>
|
||||||
CFG_CHUNI_SERVER_LOGLEVEL: debug
|
CFG_CHUNI_SERVER_LOGLEVEL: debug
|
||||||
|
|
||||||
|
##Note: comment 80 and 8443 when you plan to use with nginx
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "8443:8443"
|
- "8443:8443"
|
||||||
@ -64,3 +66,18 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "9090:8080"
|
- "9090:8080"
|
||||||
|
|
||||||
|
##Note: uncomment to allow use nginx with artemis, don't forget to comment 80 and 8443 ports on artemis
|
||||||
|
# nginx:
|
||||||
|
# hostname: ma.nginx
|
||||||
|
# image: nginx:latest
|
||||||
|
# ports:
|
||||||
|
# - "80:80"
|
||||||
|
# - "443:443"
|
||||||
|
# - "8443:8443"
|
||||||
|
# volumes:
|
||||||
|
##Note: copy example_config/example_nginx.conf to configs/nginx folder, edit it and rename to nginx.conf
|
||||||
|
# - ./configs/nginx:/etc/nginx/conf.d
|
||||||
|
# - ./cert:/etc/nginx/cert
|
||||||
|
# - ./logs/nginx:/var/log/nginx
|
||||||
|
# depends_on:
|
||||||
|
# - app
|
Reference in New Issue
Block a user