ISPConfig apache2 howto module_proxy

Discussion in 'Installation/Configuration' started by glasprilla, Oct 4, 2006.

  1. glasprilla

    glasprilla New Member

    I have already configurated ISPConfig Ok, but ho I have been able to him to qualify I modulate of proxy: module_proxy, to give to access to a WEB that this in the Intranet, i dont know how to, qhen restart ISPConfig its comment the seccion that load the modules proxy an say it no support, anyone to help me please? :confused:
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Did you install mod_proxy from your linux distribution? Have you enabled / loaded mod_proxy and restarted your apache webserver afterwards?
     
  3. glasprilla

    glasprilla New Member

    apache2 with proxy on SUSE 10.1 OK

    Thanks Till

    The steps for everyone when you install apache2(SUSE 10.1) without proxy modules, and then install ISPConfig:

    1) install (Add toAPACHE_MODULES var) proxy modules on apache2:

    On: /etc/sysconfig/apache2
    APACHE_MODULES="actions alias auth_basic authn_file authz_host
    authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env
    expires include log_config mime negotiation setenvif ssl suexec userdir
    php5 proxy proxy_ajp proxy_balancer proxy_connect proxy_ftp proxy_http
    rewrite"

    2) On: /etc/apache2/default-server.conf (add to last line)
    ProxyRequests On
    ProxyVia On

    3) Edit vhosts file created by ISPConfig:
    On :/etc/apache2/vhosts/Vhosts_ispconfig.conf (Inside of VirtualHost section at last line)
    <VirtualHost 172.16.0.23:80>
    ServerName www. ...
    :
    ...
    ProxyPass /intranet http://172.16.0.28
    ProxyPass /intranet http://172.16.0.28
    </VirtualHost>

    Running OK.
     

Share This Page