| 1 | = Reverse proxy opzetten = |
| 2 | |
| 3 | Met apache kunt u inkomende verbindingen doorlaten sturen naar een interne webserver. |
| 4 | |
| 5 | Onderstaand voorbeeld zorgt dat u via http://test.server.nl/Printroom bij deze interne url kunt: https://192.168.0.123/Printroom |
| 6 | |
| 7 | {{{ |
| 8 | [Syn-3] root@server /etc/apache2/conf.d# cat proxy.conf |
| 9 | LoadModule proxy_module lib/apache2/mod_proxy.so |
| 10 | LoadModule proxy_http_module lib/apache2/mod_proxy_http.so |
| 11 | LoadModule proxy_connect_module lib/apache2/mod_proxy_connect.so |
| 12 | |
| 13 | SSLProxyEngine On |
| 14 | |
| 15 | ProxyPreserveHost On |
| 16 | ProxyPass /Printroom/ https://192.168.0.123/Printroom/ |
| 17 | ProxyPassReverse /Printroom/ https://192.168.0.123/Printroom/ |
| 18 | |
| 19 | }}} |
| 20 | |
| 21 | |
| 22 | Vergeet niet apache te restarten. |
| 23 | |
| 24 | U dient minimaal SYN-3 versie 4.4.2 te hebben. |