0.4.2
This commit is contained in:
parent
41f249ed5a
commit
f0689ebfab
4 changed files with 9 additions and 2 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.4.2
|
||||||
|
|
||||||
|
- Set `SECURE_PROXY_SSL_HEADER` setting for production
|
||||||
|
|
||||||
## 0.4.1
|
## 0.4.1
|
||||||
|
|
||||||
- Add missing env variables
|
- Add missing env variables
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "newsreader",
|
"name": "newsreader",
|
||||||
"version": "0.3.13.8",
|
"version": "0.4.2",
|
||||||
"description": "Application for viewing RSS feeds",
|
"description": "Application for viewing RSS feeds",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = 'newsreader'
|
name = 'newsreader'
|
||||||
version = '0.4.0.0'
|
version = '0.4.2'
|
||||||
authors = [{name = 'Sonny', email= 'sonnyba871@gmail.com'}]
|
authors = [{name = 'Sonny', email= 'sonnyba871@gmail.com'}]
|
||||||
license = {text = 'GPL-3.0'}
|
license = {text = 'GPL-3.0'}
|
||||||
requires-python = '>=3.11'
|
requires-python = '>=3.11'
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,10 @@ from .base import * # isort:skip
|
||||||
|
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
|
|
||||||
|
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
|
||||||
|
|
||||||
ALLOWED_HOSTS = ["127.0.0.1", "localhost", "rss.fudiggity.nl", "django"]
|
ALLOWED_HOSTS = ["127.0.0.1", "localhost", "rss.fudiggity.nl", "django"]
|
||||||
|
|
||||||
ADMINS = [
|
ADMINS = [
|
||||||
("", email)
|
("", email)
|
||||||
for email in os.getenv("ADMINS", "").split(",")
|
for email in os.getenv("ADMINS", "").split(",")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue