# HG changeset patch # User RhodeCode Admin # Date 2024-07-16 12:02:18 # Node ID e9334ba1fc588ea5ad2a5d33832a9a66cedbea7c # Parent 3850c0209ea8ccd5a61f4f615e6852569799e7ae ini: cleanup diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -1,11 +1,11 @@ -# ; ################################# ; RHODECODE VCSSERVER CONFIGURATION ; ################################# [server:main] -; COMMON HOST/IP CONFIG +; COMMON HOST/IP CONFIG, This applies mostly to develop setup, +; Host port for gunicorn are controlled by gunicorn_conf.py host = 0.0.0.0 port = 10010 @@ -14,7 +14,7 @@ port = 10010 ; GUNICORN APPLICATION SERVER ; ########################### -; run with gunicorn --paste rhodecode.ini +; run with gunicorn --config gunicorn_conf.py --paste vcsserver.ini ; Module to use, this setting shouldn't be changed use = egg:gunicorn#main diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -1,11 +1,11 @@ -# ; ################################# ; RHODECODE VCSSERVER CONFIGURATION ; ################################# [server:main] -; COMMON HOST/IP CONFIG +; COMMON HOST/IP CONFIG, This applies mostly to develop setup, +; Host port for gunicorn are controlled by gunicorn_conf.py host = 0.0.0.0 port = 10010 @@ -14,7 +14,7 @@ port = 10010 ; GUNICORN APPLICATION SERVER ; ########################### -; run with gunicorn --paste rhodecode.ini +; run with gunicorn --config gunicorn_conf.py --paste vcsserver.ini ; Module to use, this setting shouldn't be changed use = egg:gunicorn#main