Questions tagged «apache»

2
如何在Windows中通过Apache代理Geoserver
我在localhost:80上使用apache Web服务器,从localhost:8888上的jetty servlet提供了geoserver服务。我想设置代理以重定向请求,以便将对localhost / geoserver的请求路由到localhost:8888 / geoserver 我正在遵循http://gistutor.com/geoserver/21-intermediate-geoserver-tutorials/38-configuring-geoserver-proxy-for-public-and-remote-data-access.html中的教程,因此我陷入了它说的地方 copy the text below and right click to paste the ProxyPass into your httpd.conf file right above the </VirtualHost> tag. ProxyRequests Off ProxyPreserveHost On <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /geoserver http://localhost:8080/geoserver ProxyPassReverse /geoserver http://localhost:8080/geoserver 我找不到在httpd.conf文件中的上方文本插入位置。httpd.conf文件中的虚拟主机指令指向httpd-vhosts.conf文件,如下所示 # # Use …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.