Note that there are some explanatory texts on larger screens.

plurals
  1. POhttps somehow get's re-writen into http and causes me error
    primarykey
    data
    text
    <p>Simply put, I have a custom software that runs it's own webserver. I then found instructions on how to use apache as a proxy that will enable ssl for that site. (long story short, my custom software doesn't support ssl and it's not an option)</p> <p>When I go to <code><a href="https://myserver.com:8096/" rel="nofollow">https://myserver.com:8096/</a></code> (port is forwarded internally to 443), the server re-writes the url as <code><a href="http://myserver.com:8096/abc/123/" rel="nofollow">http://myserver.com:8096/abc/123/</a></code> which causes the connection to fail because it's expecting HTTPS.</p> <p>Here is my default-ssl config, Hopefully I just have a mistake in there somewhere... <code> </p> <pre><code> SSLEngine on SSLCertificateFile /etc/apache2/ssl/cert.pem SSLCertificateKeyFile /etc/apache2/ssl/key-cert.pem ProxyRequests Off &lt;Proxy *&gt; Order deny,allow Allow from all &lt;/Proxy&gt; ProxyVia On ProxyPass /webdav/ http://127.0.0.1:8069/webdav/ &lt;Location /webdav/ &gt; ProxyPassReverse /webdav/ &lt;Limit OPTIONS PROPFIND GET REPORT MKACTIVITY PROPPATCH PUT MOVE COPY DELETE LOCK UNLOCK&gt; Order Deny,Allow Allow from all Satisfy Any &lt;/Limit&gt; &lt;/Location&gt; ProxyPass / http://127.0.0.1:8069/ &lt;location / &gt; ProxyPassReverse / &lt;/location&gt; RequestHeader set "X-Forwarded-Proto" "https" # Fix IE problem (httpapache proxy dav error 408/409) SetEnv proxy-nokeepalive 1 ErrorDocument 400 'ERROR!' ErrorDocument 403 'ERROR!' ErrorDocument 404 'ERROR!' ErrorDocument 503 'ERROR!' </code></pre> <p> </code></p> <p><em>the missing /VirtualHost is there, I just can't figure out how to get it to display on here...</em></p> <p>Anyone have a clue?</p> <p>Thanks in advance, Marc</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload