diff --git a/README.md b/README.md index 1508c10..94bc646 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/server/settings.py b/server/settings.py index 879b2e5..643c7c2 100644 --- a/server/settings.py +++ b/server/settings.py @@ -18,7 +18,7 @@ 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." @@ -26,7 +26,7 @@ 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 !