Hello,
in my environment i have two servers, an apache2 reverse proxy and the univention corporate server.
My problem is that if i go to subdomain its forwarded correctly to the univention server cause i see sub.domain.com/univention/portal/ in address bar but i see nothing else. Maybe there is something missing in my configuration.
Here is my apache2 reverse proxy configuration:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName sub.domain.com
#DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
# LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Include /etc/letsencrypt/options-ssl-apache.conf
SSLProxyEngine On
ProxyPass "/" "https://192.168.1.5/"
ProxyPassReverse "/" "https://192.168.1.5/"
SSLProxyCheckPeerName Off
SSLProxyCheckPeerExpire Off
<IfModule mod_headers.c>
Header set Referrer-Policy "no-referrer"
</IfModule>
SSLCertificateFile /etc/letsencrypt/live/domain/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain/privkey.pem
</VirtualHost>
</IfModule>
If i go to https://192.168.1.5 directly everything works. The univention server has a selfsigned certificate.
Thanks for help.