Non Port Directed Access

Discussion in 'Server Operation' started by Mark Taylor, Apr 15, 2017.

  1. Mark Taylor

    Mark Taylor New Member

    I'd like to access my admin login using a subdomain rather than a port re-direct. How can I achieve this please?

    So, for example: "h t t p s://i s p a d m i n.matsys-solutions.com" rather than "h t t p s://w w w .matsys-solutions.com:8080"
     
  2. You can try to do this with apache reverse proxy.

    1) Install and activate apache proxy module.
    2) Create a new site in ispconfig
    3) Insert the following into the apache directive field of the new site:

    Code:
    
    ProxyPass / http://ispconfig.example.com:8080/
    ProxyPassReverse / http://ispconfig.example.com:8080/
     

Share This Page