You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nginx config file is not accessible in the /shared volume. This is related to #219 (comment) as it would enable us to update the nginx config file ourselves.
Cause
When calling start.sh, the script creates shared folders:
Hi all!
Problem
The
nginx
config file is not accessible in the/shared
volume. This is related to #219 (comment) as it would enable us to update thenginx
config file ourselves.Cause
When calling
start.sh
, the script creates shared folders:seafile-docker/scripts/start.py
Lines 45 to 48 in 0d24e19
and then calls
generate_local_nginx_conf
seafile-docker/scripts/start.py
Line 52 in 0d24e19
which tries to move the nginx config file to the shared folder
/shared/nginx
and then tries to link it to/etc/
seafile-docker/scripts/bootstrap.py
Line 97 in 0d24e19
But the shared folder
/shared/nginx
is never created, so the moving and linking fails.Solution
Create the folder
/shared/nginx
instart.py
.Thanks!
The text was updated successfully, but these errors were encountered: