Merge branch 'develop' into fix_uploads

This commit is contained in:
Daniel Markstedt 2021-09-20 18:35:52 -07:00
commit 479df419d2
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 # /etc/nginx/sites-available/default
# Simple proxy_pass for RaSCSI-web # Simple proxy_pass for RaSCSI-web
server { server {
listen [::]:80 default_server;
listen 80 default_server;
location / { location / {
proxy_pass http://127.0.0.1:8080; proxy_pass http://127.0.0.1:8080;
} }
@ -15,4 +18,4 @@ server {
location = /502.html { location = /502.html {
root /var/www/html/; root /var/www/html/;
} }
} }