Compare commits

...

23 Commits

Author SHA1 Message Date
Tobias Genannt ad139decb3
Merge pull request #1353 from netbox-community/renovate/sentry-sdk-2.x
Update dependency sentry-sdk to v2.19.0
2024-11-21 19:03:58 +01:00
renovate[bot] 404b4bcffe
Update dependency sentry-sdk to v2.19.0 2024-11-21 17:26:58 +00:00
Tobias Genannt 0e1c589541
Merge pull request #1351 from netbox-community/renovate/dulwich-0.x
Update dependency dulwich to v0.22.6
2024-11-19 16:36:15 +01:00
Tobias Genannt d8ac6f828c Removed LOGIN_REQUIRED 2024-11-19 15:58:22 +01:00
renovate[bot] bf0cecc7fd
Update dependency dulwich to v0.22.6 2024-11-18 01:40:01 +00:00
Tobias Genannt 1ed3b1d849
Merge pull request #1350 from netbox-community/renovate/dulwich-0.x
Update dependency dulwich to v0.22.5
2024-11-07 18:45:10 +01:00
renovate[bot] dcc8a624ba
Update dependency dulwich to v0.22.5 2024-11-07 16:51:46 +00:00
Tobias Genannt 7ccd618c58
Merge pull request #1347 from tobiasge/1331-forwarded-for
Fixes #1331: Added 'forwarded' section Unit config
2024-11-07 09:06:56 +01:00
Tobias Genannt afd18c6f39 Fixes #1331: Added 'forwarded' section Unit config
Simplifies the listener configuration by using a wildcard for the IP and
adds a forwarded section that trusts all proxies on RFC1918 networks.
2024-11-05 13:20:04 +01:00
Tobias Genannt d573274e21
Merge pull request #1346 from netbox-community/renovate/sentry-sdk-2.x
Update dependency sentry-sdk to v2.18.0
2024-11-05 12:41:52 +01:00
renovate[bot] 50721989bf
Update dependency sentry-sdk to v2.18.0 2024-11-04 17:39:16 +00:00
Tobias Genannt 06232f64bb
Merge pull request #1345 from netbox-community/renovate/dulwich-0.x
Update dependency dulwich to v0.22.4
2024-11-01 19:10:47 +01:00
renovate[bot] 8fcbc5c294
Update dependency dulwich to v0.22.4 2024-11-01 13:38:59 +00:00
Tobias Genannt 14612526e0
Merge pull request #1339 from netbox-community/renovate/sentry-sdk-2.x
Update dependency sentry-sdk to v2.17.0
2024-10-17 16:28:29 +02:00
Tobias Genannt 8cd5ea456e
Merge pull request #1338 from netbox-community/renovate/django-auth-ldap-5.x
Update dependency django-auth-ldap to v5.1.0
2024-10-17 15:53:23 +02:00
renovate[bot] 8453eab8dd
Update dependency sentry-sdk to v2.17.0 2024-10-17 13:18:41 +00:00
renovate[bot] cc6a35b636
Update dependency django-auth-ldap to v5.1.0 2024-10-17 13:18:36 +00:00
Tobias Genannt 48f6e6cc04
Merge pull request #1337 from netbox-community/renovate/dulwich-0.x
Update dependency dulwich to v0.22.3
2024-10-17 07:06:16 +02:00
renovate[bot] bffdc6d822
Update dependency dulwich to v0.22.3 2024-10-16 14:38:27 +00:00
Tobias Genannt 3982207d91
Merge pull request #1332 from netbox-community/renovate/django-auth-ldap-5.x
Update dependency django-auth-ldap to v5
2024-10-08 19:17:08 +02:00
Tobias Genannt 409cfeb337
Merge pull request #1327 from netbox-community/renovate/sentry-sdk-2.x
Update dependency sentry-sdk to v2.16.0
2024-10-08 18:45:08 +02:00
renovate[bot] 5354b142cb
Update dependency django-auth-ldap to v5 2024-10-08 16:41:06 +00:00
renovate[bot] d3ce916073
Update dependency sentry-sdk to v2.16.0 2024-10-08 12:47:04 +00:00
3 changed files with 17 additions and 14 deletions

View File

@ -1,16 +1,20 @@
{
"listeners": {
"0.0.0.0:8080": {
"pass": "routes/main"
"*:8080": {
"pass": "routes/main",
"forwarded": {
"client_ip": "X-Forwarded-For",
"protocol": "X-Forwarded-Proto",
"source": ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
}
},
"[::]:8080": {
"pass": "routes/main"
},
"0.0.0.0:8081": {
"pass": "routes/status"
},
"[::]:8081": {
"pass": "routes/status"
"*:8081": {
"pass": "routes/status",
"forwarded": {
"client_ip": "X-Forwarded-For",
"protocol": "X-Forwarded-Proto",
"source": ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
}
}
},
"routes": {

View File

@ -1,5 +1,5 @@
django-auth-ldap==4.8.0
django-auth-ldap==5.1.0
django-storages[azure,boto3,dropbox,google,libcloud,sftp]==1.14.4
dulwich==0.22.1
dulwich==0.22.6
python3-saml==1.16.0 --no-binary lxml,xmlsec
sentry-sdk[django]==2.14.0
sentry-sdk[django]==2.19.0

View File

@ -4,4 +4,3 @@ LOGGING = {
}
DEFAULT_PERMISSIONS = {}
LOGIN_REQUIRED = False