mirror of
https://github.com/Ryujinx/Ryujinx-Website.git
synced 2025-01-09 17:47:18 -03:00
14 lines
276 B
Nginx Configuration File
14 lines
276 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;
|
|
}
|
|
}
|