Create site.conf

This commit is contained in:
Beeranco 2023-08-23 04:31:19 +02:00 committed by GitHub
parent 5bdd7977ec
commit f458a3faea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
Dashboard/site.conf Normal file
View File

@ -0,0 +1,12 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}