From b019c546cd91e95ccdb6a1ffede3d8d8b1397a19 Mon Sep 17 00:00:00 2001 From: Maxime Bombar Date: Sat, 7 Mar 2020 15:56:00 +0100 Subject: [PATCH 1/2] Use example.org in nginx_note.conf_example --- nginx_note.conf_example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx_note.conf_example b/nginx_note.conf_example index 1f7ce4ca..204784d0 100644 --- a/nginx_note.conf_example +++ b/nginx_note.conf_example @@ -9,7 +9,7 @@ server { # the port your site will be served on listen 80; # the domain name it will serve for - server_name note.comby.xyz; # substitute your machine's IP address or FQDN + server_name note.example.org; # substitute your machine's IP address or FQDN charset utf-8; # max upload size From 55a775427756794e6896d44e905776a1282dcc31 Mon Sep 17 00:00:00 2001 From: Pierre-antoine Comby Date: Sat, 7 Mar 2020 17:27:28 +0100 Subject: [PATCH 2/2] use localhost in dev --- note_kfet/settings/development.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/note_kfet/settings/development.py b/note_kfet/settings/development.py index ad2cd2f1..e68e9d68 100644 --- a/note_kfet/settings/development.py +++ b/note_kfet/settings/development.py @@ -51,4 +51,4 @@ SESSION_COOKIE_AGE = 60 * 60 * 3 # CAS Client settings # Can be modified in secrets.py -CAS_SERVER_URL = "https://note.comby.xyz/cas/" +CAS_SERVER_URL = "http://localhost:8000/cas/"