Ryujinx-Website/build/nginx.conf

15 lines
237 B
Nginx Configuration File

server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
index index.html;
}
location = /robots.txt {
root /usr/share/nginx/html;
}
}