File tree 2 files changed +11
-3
lines changed
inventory_project/settings
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,8 @@ To make a new release, do this:
166
166
167
167
[ comment ] : < > ( ✂✂✂ auto generated history start ✂✂✂ )
168
168
169
+ * [ ** dev** ] ( https://github.com/jedie/PyInventory/compare/v0.21.1...main )
170
+ * 2025-05-01 - Fix local dev server: Don't enforce https
169
171
* [ v0.21.1] ( https://github.com/jedie/PyInventory/compare/v0.21.0...v0.21.1 )
170
172
* 2025-05-01 - Replace setuptools with hatchling
171
173
* 2025-04-30 - Update requirements and some small code parts
@@ -174,14 +176,14 @@ To make a new release, do this:
174
176
* 2025-03-23 - Migrate "pip-tools" -> "uv" and remove tox
175
177
* [ v0.20.1] ( https://github.com/jedie/PyInventory/compare/v0.20.0...v0.20.1 )
176
178
* 2024-09-05 - switched to https://github.com/jazzband/django-tinymce/
179
+
180
+ <details ><summary >Expand older history entries ...</summary >
181
+
177
182
* [ v0.20.0] ( https://github.com/jedie/PyInventory/compare/v0.19.3...v0.20.0 )
178
183
* 2024-09-05 - Replace django-ckeditor with django-prose-editor and fix tests
179
184
* 2024-09-05 - Project updates
180
185
* 2024-01-16 - Use typeguard in tests
181
186
* 2024-01-16 - Update requirements
182
-
183
- <details ><summary >Expand older history entries ...</summary >
184
-
185
187
* [ v0.19.3] ( https://github.com/jedie/PyInventory/compare/v0.19.2...v0.19.3 )
186
188
* 2023-11-01 - Auto generate README history
187
189
* 2023-11-01 - Update requirements
Original file line number Diff line number Diff line change 13
13
# SECURITY WARNING: don't run with debug turned on in production!
14
14
DEBUG = True
15
15
16
+ # Disable secure settings from prod.py:
17
+ CSRF_COOKIE_SECURE = False
18
+ SESSION_COOKIE_SECURE = False
19
+ SECURE_PROXY_SSL_HEADER = None
20
+ SECURE_SSL_REDIRECT = False
21
+ SECURE_HSTS_PRELOAD = False
16
22
17
23
# Serve static/media files for local development:
18
24
SERVE_FILES = True
You can’t perform that action at this time.
0 commit comments