mirror of
https://github.com/garentyler/inferno.git
synced 2025-07-19 11:50:41 -06:00
10 lines
177 B
Nginx Configuration File
10 lines
177 B
Nginx Configuration File
server {
|
|
listen 3000;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /var/www/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
} |