Update nginx-default.conf (#241)

Update nginx-default.conf to enable the web ui via IPv6
This commit is contained in:
No0ne 2021-09-21 03:17:17 +02:00 committed by GitHub
parent 9795c553be
commit b92a762acc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@ -0,0 +1 @@
* @akuker @erichelgeson

View File

@ -1,6 +1,9 @@
# /etc/nginx/sites-available/default
# Simple proxy_pass for RaSCSI-web
server {
listen [::]:80 default_server;
listen 80 default_server;
location / {
proxy_pass http://127.0.0.1:8080;
}
@ -15,4 +18,4 @@ server {
location = /502.html {
root /var/www/html/;
}
}
}