mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-26 13:49:21 +00:00
12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
|
# /etc/nginx/sites-available/default
|
||
|
# Simple proxy_pass for RaSCSI-web
|
||
|
server {
|
||
|
location / {
|
||
|
proxy_pass http://localhost:8080;
|
||
|
}
|
||
|
|
||
|
error_page 502 /502.html;
|
||
|
location = /502.html {
|
||
|
root /var/www/html/;
|
||
|
}
|
||
|
}
|