23 lines
481 B
Text
23 lines
481 B
Text
![]() |
##
|
||
|
# EB Games Real Dot Live
|
||
|
##
|
||
|
|
||
|
server {
|
||
|
|
||
|
listen 42069 default_server;
|
||
|
listen [::]:42069 default_server;
|
||
|
|
||
|
root /home/shadow8t4/ebgamesreal-live/;
|
||
|
|
||
|
index index.html index.htm index.nginx-debian.html;
|
||
|
|
||
|
server_name ebgamesreal.live;
|
||
|
|
||
|
location / {
|
||
|
# First attempt to serve request as file, then
|
||
|
# as directory, then fall back to displaying a 404.
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
}
|
||
|
|