Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
micwallace committed Dec 14, 2016
2 parents c92b06a + 199669f commit 5ebcc21
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ WallacePOS requires:
Order deny,allow
Allow from all
</Proxy>
ProxyPass /socket.io/1/websocket/ ws://localhost:8080/socket.io/1/websocket/
ProxyPassReverse /socket.io/1/websocket/ ws://localhost:8080/socket.io/1/websocket
ProxyPass /socket.io/ http://localhost:8080/socket.io/
ProxyPassReverse /socket.io/ http://localhost:8080/socket.io/
RewriteEngine On
RewriteCond %{HTTP:Connection} Upgrade [NC]
RewriteRule /(.*) ws://localhost:8080/$1 [P,L]
ProxyPass /socket.io http://localhost:8080/socket.io/
ProxyPassReverse /socket.io http://localhost:8080/socket.io/
<Location /socket.io>
Order allow,deny
Allow from all
Expand All @@ -80,17 +81,19 @@ WallacePOS requires:
sudo apt-get update
sudo apt-get install nodejs && apt-get install npm
cd %/your_install_dir%/api
sudo npm install socket.io@0.9.17
sudo npm install socket.io
```
## Installation & Startup
1. Clone the latest WallacePOS release to %your_install_dir% if you haven't done so already.
The installation dir must be your Apache document root directory!
2. Run `composer install` in your install directory to update PHP dependencies (you may need to install composer first).
2. Visit /installer in your browser & follow the installation wizard.
3. Visit /installer in your browser & follow the installation wizard.
3. Login to the admin dashboard at /admin, from the menu go to Settings -> Utilities and make sure the feed server has been started successfully.
4. Login to the admin dashboard at /admin, from the menu go to Settings -> Utilities and make sure the feed server has been started successfully.
## Deploying using dokku
Expand Down

0 comments on commit 5ebcc21

Please sign in to comment.