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: Apache 2.4 adding internal site with SSL passthrough or Prox |
|
Author |
|
pfb6736
Joined: 31 Jul 2025 Posts: 1 Location: New Hampshire
|
Posted: Fri 01 Aug '25 16:21 Post subject: Apache 2.4 adding internal site with SSL passthrough or Prox |
|
|
Greetings and thanks for the assistance . I appreciate it :
I am running a website (wordpress) https://www.aaa.com on:
Apache 2.4
ubuntu 20.04
ssl
I am looking to add an internal docker image that is running on :
nginx
paperless-ngx
port :8000
currently http://222.222.222.95:8000
Would like to use the ssl cert for the main website and pass the ssl to a subsite named :https://www.aaa.com/paperless
I am hopefully looking either SSL passthrough or reverse proxy at the apache level - by adding syntax to the existing config for the ssl/wordpress mainsite[/code] |
|
Back to top |
|
James Blond Moderator

Joined: 19 Jan 2006 Posts: 7431 Location: EU, Germany, Next to Hamburg
|
Posted: Wed 06 Aug '25 8:51 Post subject: |
|
|
Code: |
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
ProxyPass /paperless/ http://222.222.222.95:8000/
ProxyPassReverse /paperless/ http://222.222.222.95:8000/
|
|
|
Back to top |
|
|
|
|
|
|