当前位置 博文首页 > 蜗牛为梦想而生H:Aphche代理配置

    蜗牛为梦想而生H:Aphche代理配置

    作者:[db:作者] 时间:2021-09-07 19:09

    配置编写:

    NameVirtualHost *:80
    <VirtualHost *:80>
    	ServerAdmin webmaster@dummy-host.localhost
    	DocumentRoot "D:\aphche\htdocs"
    	DirectoryIndex index.html
        ServerName localhost
        ServerAlias localhost
        ErrorLog "logs/dummy-host.localhost-error.log"
        CustomLog "logs/dummy-host.localhost-access.log" common	
    	
    	###################远程项目
    	ProxyPass /platform http://xx.xxx.xx.xx:8888/platform
    	ProxyPassReverse /platform http://xx.xxx.xx.xx:8888/platform
    	
    	
    	###################本地项目
    	ProxyPass /test http://xx.xxx.xx.xx:8081/test
    	ProxyPassReverse /test http://xx.xxx.xx.xx:8081/test
    
    </VirtualHost>

    cs
    下一篇:没有了