Skip to content

Commit

Permalink
Merge pull request #62 from JasonHHouse/issue/61
Browse files Browse the repository at this point in the history
Updating to port 8484 for TLS
  • Loading branch information
Knoxie authored Oct 22, 2019
2 parents 2cc1745 + fa870a2 commit 9aad6ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ To pull the image, run the following command in a terminal

You now have the Gaps image and you need to do a little configuration. The command to run Gaps follows

docker run -p 8443:8443 --name mygaps --expose 32400 housewrecker/gaps:latest
docker run -d -p 8484:8484 --name mygaps --expose 32400 housewrecker/gaps:latest

For unraid see the wiki: https://github.com/JasonHHouse/Gaps/wiki

### Important Notes

1. -p or publish exposes maps ports from the container to the outside world. Docker has a great write up [here](https://docs.docker.com/config/containers/container-networking/).

*Note: If 8443 is in us on your system, change the publish command to -p <new available port>:8443*
*Note: If 8484 is in us on your system, change the publish command to -p <new available port>:8484*

2. --name mygaps sets the name of the local running container. You can change it to whatever you want, just don't forget the name in the future!

Expand All @@ -46,11 +46,11 @@ To see Gaps, open up your browser and navigate over to the ip address and port y

If your browser is on the same machine running Docker and you did not change the port, then you can navigate to

http://localhost:8443
http://localhost:8484

Or

http://127.0.0.1:8443
http://127.0.0.1:8484

You should be presented with this screen

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spring:
# Compress the response only if the response size is at least 1KB
# Enable HTTP/2 support, if the current environment supports it
server:
port: 8443
port: 8484
compression:
enabled: true
mime-types: text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json
Expand Down

0 comments on commit 9aad6ad

Please sign in to comment.