Add note for reverse proxy.
README.md
| 11 | 11 | ||
| 12 | 12 | It was tested on Guile 2.2.7 and 3.0.7. Many thanks to the Guile | |
| 13 | 13 | development team for such great software. | |
| 14 | + | ||
| 15 | + | ## Reverse Proxy | |
| 16 | + | ||
| 17 | + | It may be desirable to setup a reverse proxy on Apache Httpd (also a memo | |
| 18 | + | for myself), so you don't have to expose the 8080 or whatever port: | |
| 19 | + | ||
| 20 | + | ``` | |
| 21 | + | <Location "/pastebin"> | |
| 22 | + | ProxyPass "http://your_address:8080" | |
| 23 | + | ProxyPassReverse "http://your_address:8080" | |
| 24 | + | ProxyHTMLEnable On | |
| 25 | + | ProxyHTMLDocType "<!DOCTYPE html>" | |
| 26 | + | ProxyHTMLURLMap "/" "/pastebin/" | |
| 27 | + | </Location> | |
| 28 | + | ``` | |
| 29 | + |