mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
Fix listen on noth IPv4 and IPv6
This commit is contained in:
parent
8cfbbbb1e9
commit
5659aad8e7
4 changed files with 5 additions and 3 deletions
|
|
@ -147,7 +147,7 @@ VOLUME [ \
|
||||||
CMD [ \
|
CMD [ \
|
||||||
"/home/frappe/frappe-bench/env/bin/gunicorn", \
|
"/home/frappe/frappe-bench/env/bin/gunicorn", \
|
||||||
"--chdir=/home/frappe/frappe-bench/sites", \
|
"--chdir=/home/frappe/frappe-bench/sites", \
|
||||||
"--bind=0.0.0.0:8000", \
|
"--bind=[::]:8000", \
|
||||||
"--threads=4", \
|
"--threads=4", \
|
||||||
"--workers=2", \
|
"--workers=2", \
|
||||||
"--worker-class=gthread", \
|
"--worker-class=gthread", \
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ VOLUME [ \
|
||||||
CMD [ \
|
CMD [ \
|
||||||
"/home/frappe/frappe-bench/env/bin/gunicorn", \
|
"/home/frappe/frappe-bench/env/bin/gunicorn", \
|
||||||
"--chdir=/home/frappe/frappe-bench/sites", \
|
"--chdir=/home/frappe/frappe-bench/sites", \
|
||||||
"--bind=0.0.0.0:8000", \
|
"--bind=[::]:8000", \
|
||||||
"--threads=4", \
|
"--threads=4", \
|
||||||
"--workers=2", \
|
"--workers=2", \
|
||||||
"--worker-class=gthread", \
|
"--worker-class=gthread", \
|
||||||
|
|
|
||||||
|
|
@ -136,7 +136,7 @@ VOLUME [ \
|
||||||
CMD [ \
|
CMD [ \
|
||||||
"/home/frappe/frappe-bench/env/bin/gunicorn", \
|
"/home/frappe/frappe-bench/env/bin/gunicorn", \
|
||||||
"--chdir=/home/frappe/frappe-bench/sites", \
|
"--chdir=/home/frappe/frappe-bench/sites", \
|
||||||
"--bind=0.0.0.0:8000", \
|
"--bind=[::]:8000", \
|
||||||
"--threads=4", \
|
"--threads=4", \
|
||||||
"--workers=2", \
|
"--workers=2", \
|
||||||
"--worker-class=gthread", \
|
"--worker-class=gthread", \
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,8 @@ upstream socketio-server {
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 8080;
|
listen 8080;
|
||||||
|
listen [::]:8080;
|
||||||
|
|
||||||
server_name ${FRAPPE_SITE_NAME_HEADER};
|
server_name ${FRAPPE_SITE_NAME_HEADER};
|
||||||
root /home/frappe/frappe-bench/sites;
|
root /home/frappe/frappe-bench/sites;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue