Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Header edit dynamic urls |
|
Author |
|
ThomasT
Joined: 05 Sep 2018 Posts: 8 Location: Germany
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Mon 18 Mar '19 14:25 Post subject: |
|
|
Hi Thomas,
why not a a reverse proxy on port 443 to your internal server on port 8433?
Code: |
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<VirtualHost *:443>
ServerName example.com
DocumentRoot "c:/Apache24/htdocs"
<Directory "c:/Apache24/htdocs">
Options Indexes Includes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<Location />
ProxyPass https://internal-dynamic:8433/
ProxyPassReverse https://internal-dynamic:8433/
</Location>
SSLEngine on
SSLCertificateFile conf/certs/fullchain.pem
SSLCertificateKeyFile conf/certs/privkey.pem
</virtualhost>
|
|
|
Back to top |
|
ThomasT
Joined: 05 Sep 2018 Posts: 8 Location: Germany
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
|
Back to top |
|
|
|
|
|
|