OS Name/Version: Ubuntu 18.04 LTS
Product Name/Version: AMP TITAN v1.8.3.4, built 09/08/2019 13:00
Problem Description:
The Server itself is publicly only available throught IPv6. I am using NAT to publish a small range of ports for gameserver. Internal the Server is using an IPv4 address.
I am trying to use Apache2 as a reverse proxy (currently HTTP only for testing purpose - NGINX is not an option), however I only see the website as pure HTML without any style information. Interaction with the website is not possible.
Is it possible to use Apache2 as a reverse proxy for AMP?
Steps to reproduce:
Apache configuration (removed domain names, changed internal address):
<virtualhost *:80="">
ProxyPreserveHost on
ServerAdmin webmaster@domain.tld
ServerName game.domain.tld
ProxyPass / http://10.20.30.40:8080
ProxyPassReverse / http://10.20.30.40:8080
Actions taken to resolve so far: Tried to "convert" the header variables from the NGINX reverse proxy part of the documentation.