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
# Simple proxy_pass for RaSCSI-web
server {
listen [::]:80 default_server;
listen 80 default_server;
location / {
proxy_pass http://127.0.0.1:8080;
}