mirror of
https://github.com/Rushilwiz/hoco2021.git
synced 2025-04-04 11:20:17 -04:00
20 lines
309 B
Nginx Configuration File
20 lines
309 B
Nginx Configuration File
worker_processes 1;
|
|
|
|
events { worker_connections 1024; }
|
|
|
|
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
server {
|
|
root /usr/share/nginx/html/;
|
|
index index.html;
|
|
|
|
server_name localhost;
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
error_page 404 /404/index.html;
|
|
}
|
|
}
|