Skip to content

Commit

Permalink
quick readme change
Browse files Browse the repository at this point in the history
  • Loading branch information
mc51 committed Dec 21, 2020
1 parent 1df8cf8 commit 9a94676
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ If all went fine, you should see:
Aug 23 20:43:15 ace systemd[1]: Started Clipster Server - A Multi Platform Cloud Clipboard.
```
Now, you should be able to connect to your server with [Clipster-Desktop](https://github.com/mc51/Clipster-Desktop), [Clipster-Android](https://github.com/mc51/Clipster-Android) or via browser using the URL `https://yourserver.com:9999`.
Now, you should be able to connect to your server with [Clipster-Desktop](https://github.com/mc51/Clipster-Desktop), [Clipster-Android](https://github.com/mc51/Clipster-Android) or via browser using the frontend at URL `https://domain.tld:9999`.
## Credits
Expand Down
4 changes: 2 additions & 2 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
MAX_CLIPS_PER_USER = 5

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = None
SECRET_KEY = "sfsdfsdfsdfsdfsdfdsfsdfdsf"
if not SECRET_KEY:
print(
"ERROR: You must specify a secret key. Edit server/settings.py and set a key there."
)
sys.exit(1)

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
DEBUG = True

# Add your domain / ip to the allowed hosts
# "*" allows all !
Expand Down

0 comments on commit 9a94676

Please sign in to comment.