From c2b5d59b0ae37ca25f989a220ea6b7a75845ebd2 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Tue, 2 Aug 2016 21:09:29 +0200 Subject: [PATCH] Style fixes in README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bc8178f..52f4a0d 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ First step is to obtain the live map from GitHub. You could download a simple zi ### Installation on Windows Download the latest apache binaries on [Apache Lounge](https://www.apachelounge.com/download/) (httpd-2.4.\*-win64-VC14.zip). Unpack it to somewhere. Open the configuration file (located in `conf/httpd.conf` in your favourite editor. **Change the following configs to match you paths:** -* ServerRoot "**c:/Path/To/Apache24**" -* DocumentRoot "**C:/Path/To/PokeMobBotMap/src**" -* \ +* `ServerRoot "**c:/Path/To/Apache24**"` +* `DocumentRoot "**C:/Path/To/PokeMobBotMap/src**"` +* `\` You also need to **uncomment** (remove the hashtag) the following lines: @@ -20,9 +20,10 @@ You also need to **uncomment** (remove the hashtag) the following lines: * LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so Now you need to configure the websocket proxy thing. Add the following lines on the end of the configuration file: + ``` - ProxyPass "/websocket" "**ws://localhost:14251/**" + ProxyPass "/websocket" "ws://localhost:14251/" ```