skip to Main Content

Reverse Proxy for Django App 404 Not Found – Apache

I am following this guide to try show this url www.mycompany.com/testblog instead of www.mycompany.com:8000/testblog These are my current config files setup inside my website.comssl.conf file <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName website.com ServerAlias www.website.com DocumentRoot /var/www/website.com Redirect permanent / https://website.com/ ErrorLog…

VIEW QUESTION

Apache reverse proxy – URL without / is refused

I use reverse proxy to show backend server content for a subdomain. The subdomain.mydomain.com (server A) should display content of server with IP 123.123.123.123 port 1111 (server B). Virtual host of subdomain.mydomain.com (server A): <IfModule mod_ssl.c> <VirtualHost *:443> ServerName subdomain.mydomain.com…

VIEW QUESTION
Back To Top
Search