Merge pull request #7000 from nextcloud/mastercontainer-bind-localhost
Some checks failed
Codespell / Check spelling (push) Has been cancelled
Docker Lint / docker-lint (push) Has been cancelled

mastercontainer: bind 8000 only to 127.0.0.1
This commit is contained in:
Simon L. 2025-10-17 08:58:59 +02:00 committed by GitHub
commit 3da9c4ff6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,5 @@
Listen 8000 Listen 127.0.0.1:8000
Listen 8080 Listen 8080 https
# Deny access to .ht files # Deny access to .ht files
<Files ".ht*"> <Files ".ht*">
@ -7,8 +7,8 @@ Listen 8080
</Files> </Files>
# Http host # Http host
<VirtualHost *:8000> <VirtualHost 127.0.0.1:8000>
ServerName localhost ServerName 127.0.0.1
# Add error log # Add error log
CustomLog /proc/self/fd/1 proxy CustomLog /proc/self/fd/1 proxy