apache代理配置

<VirtualHost *:80>
    ServerName www.domain.com
    ProxyRequests Off

    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>
    
    ProxyPass /test http://localhost:8080/
    ProxyPassReverse /test http://localhost:8080/
</VirtualHost>


你可能感兴趣的:(java,apache)