一个内外网部署sharepoint的配置

内网中转.conf

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>


ProxyPreserveHost On
ProxyRequests Off

<VirtualHost *:80>
ProxyPass /form http://10.145.1XX.2XX/form
ProxyPass /admin http://10.145.1XX.2XX/admin
ProxyPass /infopathform http://10.145.1XX.2XX/infopathform
proxyPass /ForeseeSPAdmin http://10.145.1XX.2XX/ForeseeSPAdmin
proxyPass /_layouts http://10.145.1XX.2XX/_layouts
</VirtualHost>

 

服务器.conf

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

ProxyPreserveHost On
ProxyRequests Off

<VirtualHost *:80>
ProxyPass /form http://localhost:7001/form
ProxyPass /admin http://localhost:7001/admin
ProxyPass /infopathform http://localhost:82/infopathform
proxyPass /ForeseeSPAdmin http://localhost:81/ForeseeSPAdmin
proxyPass /_layouts http://localhost:82/_layouts
</VirtualHost>

把Extranet都用上了,不知道是不是不标准一个内外网部署sharepoint的配置_第1张图片

你可能感兴趣的:(SharePoint)