ORIGINAL POST
This I would imagine is going to be a simple answer. I have Apache2 running on my Ubuntu server but it seems PHP is not installed. When I try to load a php page it does not load properly.
Example: http://urbanturtles.servegame.com/ (My Site)
At first I thought the php module was simply not loaded but when I try to run sudo a2enmod php
but it did not work and I get this error:
ERROR: Module php does not exist!
Thanks for help in advance!
EDIT
After trying to load a simple PHP page to show the php version I have gotten a new error trying to load the page. that error is visible here: http://urbanturtles.servegame.com/version.php . This makes me think I have more of an Apache issue than a php issue. I have a main Apahce sever that proxys all incoming traffic to each server inside my network. The Apache config for the main server looks like this:
<VirtualHost *:*>
ServerName MaxKulik.net
ServerAdmin max@maxkulik.net
ProxyPreserveHost On
ServerName "www.MaxKulik.net"
ServerAlias "MaxKulik.net"
ProxyPass / http://192.168.1.5/
ProxyPassReverse / http://192.168.1.5/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:*>
ServerName MaxKulik.net
ServerAdmin max@maxkulik.net
ProxyPreserveHost On
ServerName "www.MaxKulik.net"
ServerAlias "MaxKulik.net"
SSLProxyEngine On
SSLProxyCheckPeerCN on
SSLProxyCheckPeerExpire on
ProxyPass / https://192.168.1.5/
ProxyPassReverse / https://192.168.1.5.
</VirtualHost>
<VirtualHost *:*>
ServerName USI
ServerAdmin max@maxkulik.net
ProxyPreserveHost On
ServerName "www.UrbanTurtles.servegame.com"
ServerAlias "UrbanTurtles.servegame.com"
ProxyPass / http://192.168.1.28
ProxyPassReverse / http://192.168.1.28
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
.
inhttps://192.168.1.5.
a typo or intentional? – muru Feb 06 '18 at 05:45