Apache reverse proxy always returning 500 Internal server error #936

Closed
opened 2026-02-04 23:22:36 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @JanssenVictor on GitHub (Feb 17, 2021).

I just installed and configured a new instance of bitwarden_rs for which i generated self signed certificates.
It works fine when i try to access it locally but whenever i use the reverse proxy all i get is 500 internal server errors.

vhost config: (apache)

<VirtualHost *:443>

   ServerName bitwarden.mydomain.com
   LoadModule proxy_module modules/mod_proxy.so
   LoadModule proxy_http_module modules/mod_proxy_http.so
   ProxyRequests Off
   
    <Proxy *>
      Require all granted
     </Proxy>

   ProxyPass / https://LOCAL_IP
   ProxyPassReverse / https://LOCAL_IP
   <Location />
       Require all granted
    </Location>

   
  
    SSLEngine on	
	SSLCertificateFile 		"Location_to_certificate_file"
	SSLCertificateKeyFile 	"Location_to_key_file"
 
</VirtualHost>

Any help would be appreciated.

Originally created by @JanssenVictor on GitHub (Feb 17, 2021). I just installed and configured a new instance of bitwarden_rs for which i generated self signed certificates. It works fine when i try to access it locally but whenever i use the reverse proxy all i get is 500 internal server errors. vhost config: (apache) ``` <VirtualHost *:443> ServerName bitwarden.mydomain.com LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so ProxyRequests Off <Proxy *> Require all granted </Proxy> ProxyPass / https://LOCAL_IP ProxyPassReverse / https://LOCAL_IP <Location /> Require all granted </Location> SSLEngine on SSLCertificateFile "Location_to_certificate_file" SSLCertificateKeyFile "Location_to_key_file" </VirtualHost> ``` Any help would be appreciated.
OVERLORD added the better for forum label 2026-02-04 23:22:36 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/vaultwarden#936