RASCSI/src/web/service-infra/nginx-default.conf

14 lines
270 B
Plaintext
Raw Normal View History

# /etc/nginx/sites-available/default
# Simple proxy_pass for RaSCSI-web
server {
location / {
proxy_pass http://localhost:8080;
}
2021-05-13 17:41:30 +00:00
client_max_body_size 0;
error_page 502 /502.html;
location = /502.html {
root /var/www/html/;
}
}