diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..f9857ddc --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @akuker @erichelgeson diff --git a/src/web/service-infra/nginx-default.conf b/src/web/service-infra/nginx-default.conf index 4a4991d4..58804911 100644 --- a/src/web/service-infra/nginx-default.conf +++ b/src/web/service-infra/nginx-default.conf @@ -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/; } -} \ No newline at end of file +}