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
5 changed files with 18 additions and 35 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
*.sql.gz *.sql.gz
.netbox .netbox
.python-version .python-version
docker-compose.override.yml
*.pem *.pem
configuration/* configuration/*
!configuration/configuration.py !configuration/configuration.py

View File

@ -1,21 +0,0 @@
services:
netbox:
ports:
- "8000:8080"
# If you want the Nginx unit status page visible from the
# outside of the container add the following port mapping:
# - "8001:8081"
# healthcheck:
# Time for which the health check can fail after the container is started.
# This depends mostly on the performance of your database. On the first start,
# when all tables need to be created the start_period should be higher than on
# subsequent starts. For the first start after major version upgrades of NetBox
# the start_period might also need to be set higher.
# Default value in our docker-compose.yml is 60s
# start_period: 90s
# environment:
# SKIP_SUPERUSER: "false"
# SUPERUSER_API_TOKEN: ""
# SUPERUSER_EMAIL: ""
# SUPERUSER_NAME: ""
# SUPERUSER_PASSWORD: ""

View File

@ -1,16 +1,20 @@
{ {
"listeners": { "listeners": {
"0.0.0.0:8080": { "*:8080": {
"pass": "routes/main" "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": { "*:8081": {
"pass": "routes/main" "pass": "routes/status",
}, "forwarded": {
"0.0.0.0:8081": { "client_ip": "X-Forwarded-For",
"pass": "routes/status" "protocol": "X-Forwarded-Proto",
}, "source": ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
"[::]:8081": { }
"pass": "routes/status"
} }
}, },
"routes": { "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 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 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 = {} DEFAULT_PERMISSIONS = {}
LOGIN_REQUIRED = False