I am not sure where these warnings are for/concerning. Should I be worried about them or just ignore them as people are trying to connect to my server? Proxy Mod is already enabled, however I am less concerned about this and more the fact my apache instance is showing random ip's and web addresses that are trying to be proxied :?
[Mon Dec 13 19:49:12.127111 2021] [proxy:warn] [pid 992000] [client 162.55.232.112:45408] AH01144: No protocol handler was valid for the URL 192.169.152.51:443 (scheme '192.169.152.51'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:12.203528 2021] [proxy:warn] [pid 992002] [client 162.55.235.124:49258] AH01144: No protocol handler was valid for the URL 192.169.152.51:443 (scheme '192.169.152.51'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:12.825123 2021] [proxy:warn] [pid 992004] [client 162.55.232.112:48362] AH01144: No protocol handler was valid for the URL www.mining-cast.com:443 (scheme 'www.mining-cast.com'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:13.158784 2021] [proxy:warn] [pid 992010] [client 162.55.232.116:39704] AH01144: No protocol handler was valid for the URL sdk.finance:443 (scheme 'sdk.finance'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:14.867535 2021] [proxy:warn] [pid 992009] [client 176.9.19.26:45758] AH01144: No protocol handler was valid for the URL www.mining-cast.com:443 (scheme 'www.mining-cast.com'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:14.988339 2021] [proxy:warn] [pid 992003] [client 162.55.235.124:33712] AH01144: No protocol handler was valid for the URL portugiptv.com:443 (scheme 'portugiptv.com'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:15.730902 2021] [proxy:warn] [pid 992001] [client 162.55.232.116:54246] AH01144: No protocol handler was valid for the URL sdk.finance:443 (scheme 'sdk.finance'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:17.591263 2021] [proxy:warn] [pid 992000] [client 162.55.232.112:41990] AH01144: No protocol handler was valid for the URL beastiptv.best:443 (scheme 'beastiptv.best'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:19.224691 2021] [proxy:warn] [pid 992002] [client 176.9.19.26:41162] AH01144: No protocol handler was valid for the URL dossiers-du-rocher.com:443 (scheme 'dossiers-du-rocher.com'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Mon Dec 13 19:49:20.844906 2021] [ssl:error] [pid 992010] [remote 192.185.52.242:443] AH01961: SSL Proxy requested for localhost.localdomain:80 but not enabled [Hint: SSLProxyEngine]
[Mon Dec 13 19:49:20.844960 2021] [proxy:error] [pid 992010] AH00961: HTTPS: failed to enable ssl support for 192.185.52.242:443 (www.standuptoracism.org.uk)
apache2 mods
root@localhost:~# apache2ctl -M
proxy_module (shared)
proxy_balancer_module (shared)
proxy_http_module (shared)
I guess you have enabled proxy module. You need to disable it with
May be there are some other mod's you need to disable. To see what else modules you can (should) disable check output of
Ok here how to enable mod_proxy.
Apart from your proxy you need to have one (or more) http-servers that deliver the content.
http://10.10.0.100 - Proxy Server
http://192.168.0.11 - Content Server
Edit /etc/apache2/sites-available/000-default.conf and change virtualhost section to
Restart Apache
Now if you access your proxy server (http://10.10.0.100) in a web browser, you will see the response of your backend server (http://192.168.0.11)