annotate libervia/__init__.py @ 1467:d6062cccd4c0

server: better reverse proxy headers handling: reverse proxy header were not used if `X-Forwarded-Host` was not set, with this patch `X-Forwarded-Host` and `X-Forwarded-Proto` are check independently. Furthermore, the new standardised `Forwarded` header is not checked too. fix 396
author Goffi <goffi@goffi.org>
date Thu, 30 Sep 2021 18:40:49 +0200
parents ac2374c92294
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1124
28e3eb3bb217 files reorganisation and installation rework:
Goffi <goffi@goffi.org>
parents: 861
diff changeset
1 import os.path
28e3eb3bb217 files reorganisation and installation rework:
Goffi <goffi@goffi.org>
parents: 861
diff changeset
2
28e3eb3bb217 files reorganisation and installation rework:
Goffi <goffi@goffi.org>
parents: 861
diff changeset
3 version_file = os.path.join(os.path.dirname(__file__), "VERSION")
1439
ac2374c92294 remove old pyjamas workaround
Goffi <goffi@goffi.org>
parents: 1183
diff changeset
4 with open(version_file) as f:
ac2374c92294 remove old pyjamas workaround
Goffi <goffi@goffi.org>
parents: 1183
diff changeset
5 __version__ = f.read().strip()