Apache web server的一点点东西

在IT界混了这么久,第一次用Apache web server。 这篇文章是教怎么设置的。http://tldp.org/LDP/LG/issue12/server.html 我要写两点,就是如果你有多个tomcat server,你需要在Apache web server里配置一下,这样不同的url可以去不同的tomcat server。 cd /etc/httpd/conf.d 会看到有个文件叫 proxy_ajp.conf,打开这个文件,在里面配置就可以了。例子如下: ProxyPass /probe/ ajp://localhost:8009/probe/ ProxyPass /probe1/ ajp://localhost:8010/probe1/ ProxyPass /probe2/ ajp://localhost:8011/probe2/ ProxyPass /apiv2/ ajp://localhost:6209/apiv2/ ProxyPass /webv2/ ajp://localhost:6209/webv2/

你可能感兴趣的:(apache,tomcat,Web,server,url)