Skip to content

Commit

Permalink
make demos and sample server non path absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
hthetiot committed Jun 2, 2018
1 parent 3477b5a commit 017e76c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server_example/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ADD package*.json $APPDIR/
RUN npm install

# Install dependencies in production mode (no dev dependencies).
ARG EASYRTC_BRANCH=master
ARG EASYRTC_BRANCH=feature/docker-easyrtc-server
RUN npm install priologic/easyrtc#$EASYRTC_BRANCH
RUN npm install --production

Expand Down
4 changes: 2 additions & 2 deletions server_example/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ <h2>This is your server's Web Root</h2>

<p>This is the easiest location to put your own static html files for developing WebRTC applications.</p>

<p>In the meantime we'll forward you to <a href="/demos/">the EasyRTC Demo page</a>...</p>
<p>In the meantime we'll forward you to <a href="./demos/">the EasyRTC Demo page</a>...</p>

<a href="http://www.easyrtc.com/"><img src="./easyrtc/img/powered_by_easyrtc.png" width="200" height="60" alt="Powered by EasyRTC"></a>
<a href="http://www.easyrtc.com/"><img src="easyrtc/img/powered_by_easyrtc.png" width="200" height="60" alt="Powered by EasyRTC"></a>
</body>
</html>

0 comments on commit 017e76c

Please sign in to comment.