|
22 | 22 | # https://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all
|
23 | 23 | # systems may support all possibilities). When USE_TZ is True, this is
|
24 | 24 | # interpreted as the default user time zone.
|
25 |
| -TIME_ZONE = "America/Chicago" |
| 25 | +TIME_ZONE: str = "UTC" |
26 | 26 |
|
27 | 27 | # If you set this to True, Plain will use timezone-aware datetimes.
|
28 | 28 | USE_TZ = True
|
|
75 | 75 | # (i.e. "/tmp" on *nix systems).
|
76 | 76 | FILE_UPLOAD_TEMP_DIR = None
|
77 | 77 |
|
78 |
| -# The numeric mode to set newly-uploaded files to. The value should be a mode |
79 |
| -# you'd pass directly to os.chmod; see |
80 |
| -# https://docs.python.org/library/os.html#files-and-directories. |
81 |
| -FILE_UPLOAD_PERMISSIONS = 0o644 |
82 |
| - |
83 |
| -# The numeric mode to assign to newly-created directories, when uploading files. |
84 |
| -# The value should be a mode as you'd pass to os.chmod; |
85 |
| -# see https://docs.python.org/library/os.html#files-and-directories. |
86 |
| -FILE_UPLOAD_DIRECTORY_PERMISSIONS = None |
87 |
| - |
88 | 78 | # Default X-Frame-Options header value
|
89 | 79 | X_FRAME_OPTIONS = "DENY"
|
90 | 80 |
|
|
121 | 111 | # SIGNING #
|
122 | 112 | ###########
|
123 | 113 |
|
124 |
| -SIGNING_BACKEND = "plain.signing.TimestampSigner" |
| 114 | +COOKIE_SIGNING_BACKEND = "plain.signing.TimestampSigner" |
125 | 115 |
|
126 | 116 | ########
|
127 | 117 | # CSRF #
|
|
132 | 122 | CSRF_COOKIE_AGE = 60 * 60 * 24 * 7 * 52
|
133 | 123 | CSRF_COOKIE_DOMAIN = None
|
134 | 124 | CSRF_COOKIE_PATH = "/"
|
135 |
| -CSRF_COOKIE_SECURE = False |
| 125 | +CSRF_COOKIE_SECURE = True |
136 | 126 | CSRF_COOKIE_HTTPONLY = False
|
137 | 127 | CSRF_COOKIE_SAMESITE = "Lax"
|
138 | 128 | CSRF_HEADER_NAME = "HTTP_X_CSRFTOKEN"
|
|
178 | 168 | SECURE_REDIRECT_EXEMPT = []
|
179 | 169 | SECURE_REFERRER_POLICY = "same-origin"
|
180 | 170 | SECURE_SSL_HOST = None
|
181 |
| -SECURE_SSL_REDIRECT = False |
| 171 | +SECURE_SSL_REDIRECT = True |
182 | 172 |
|
183 | 173 | #############
|
184 | 174 | # Templates #
|
|
0 commit comments