mirror of
https://github.com/runcitadel/core.git
synced 2024-12-28 15:42:59 +00:00
Don't fail if SSL port is not defined
This commit is contained in:
parent
28001625d8
commit
4df838147b
4
scripts/configure
vendored
4
scripts/configure
vendored
|
@ -169,7 +169,9 @@ if reconfiguring:
|
|||
TOR_PASSWORD=dotenv['TOR_PASSWORD']
|
||||
TOR_HASHED_PASSWORD=dotenv['TOR_HASHED_PASSWORD']
|
||||
NGINX_PORT=dotenv['NGINX_PORT']
|
||||
NGINX_SSL_PORT=dotenv['NGINX_SSL_PORT']
|
||||
NGINX_SSL_PORT="443"
|
||||
if 'NGINX_SSL_PORT' in dotenv:
|
||||
NGINX_SSL_PORT=dotenv['NGINX_SSL_PORT']
|
||||
if 'UPDATE_CHANNEL' in dotenv:
|
||||
UPDATE_CHANNEL=dotenv['UPDATE_CHANNEL']
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user