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
Describe the bug
I am running a docker compose. The UI is behind a rproxy with nginx which is handling all the ssl stuff. LDAP should be behind the /ldap subpath. I added SERVER_PATH as well.
Navigating to example.at/ldap works fine, the top left button there does navigate to example.org/ldap, but the login button navigates to example.at/log_in which throws everything off. example.at/ldap/log_in shows the page i would expect.
Is there some text replacement incorrect?
compose:
version: '3.8'services:
openldap:
image: osixia/openldap:1.5.0container_name: openldapvolumes:
- ./ldap_storage/ldap_db:/var/lib/ldap
- ./ldap_storage/ldap_config:/etc/ldap/slapd.denvironment:
- LDAP_ORGANISATION=example-at
- LDAP_DOMAIN=example.at
- LDAP_ADMIN_PASSWORD=admin
- LDAP_CONFIG_PASSWORD=config
- LDAP_RFC2307BIS_SCHEMA=true
- LDAP_REMOVE_CONFIG_AFTER_SETUP=true
- LDAP_TLS_VERIFY_CLIENT=neveropenldapUi:
image: wheelybird/ldap-user-manager:v1.5container_name: openldapUienvironment:
- LDAP_URI=ldap://openldap
- LDAP_BASE_DN=dc=example,dc=at
- LDAP_REQUIRE_STARTTLS=false
- LDAP_ADMINS_GROUP=admins
- LDAP_ADMIN_BIND_DN=cn=admin,dc=example,dc=at
- LDAP_ADMIN_BIND_PWD=admin
- LDAP_IGNORE_CERT_ERRORS=true
- NO_HTTPS=true # we are behind an https proxy
- PASSWORD_HASH=SSHA
- SERVER_HOSTNAME=localhost
- SERVER_NAME=example.at
- SERVER_PATH=/ldap# For some reason it still attempts to create a CA which i will not allow in certbot folders# - SERVER_KEY_FILENAME=privkey.pem# - SERVER_CERT_FILENAME=fullchain.pem#volumes:#- ./certbot_storage/conf/live/example.at:/opt/ssl:rodepends_on:
- openldapexpose:
- '80'certbot:
container_name: certbotimage: certbot/certbotrestart: unless-stoppedvolumes:
- ./certbot_storage/conf:/etc/letsencrypt:rw
- ./certbot_storage/www:/var/www/certbot:rwentrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"rproxy:
container_name: rproxybuild:
context: ./rproxydockerfile: ./Dockerfileports:
# https
- '443:443'# http
- '80:80'depends_on:
- openldapUirestart: unless-stoppedvolumes:
- ./certbot_storage/conf:/etc/letsencrypt:ro
- ./certbot_storage/www:/var/www/certbot:ro
Version
v1.5
Describe the bug
I am running a docker compose. The UI is behind a rproxy with nginx which is handling all the ssl stuff. LDAP should be behind the
/ldap
subpath. I addedSERVER_PATH
as well.Navigating to
example.at/ldap
works fine, the top left button there does navigate toexample.org/ldap
, but the login button navigates toexample.at/log_in
which throws everything off.example.at/ldap/log_in
shows the page i would expect.Is there some text replacement incorrect?
compose:
nginx:
The text was updated successfully, but these errors were encountered: