mirror of
https://github.com/Rushilwiz/crucialnet.git
synced 2025-04-09 22:00:17 -04:00
16 lines
261 B
Nginx Configuration File
16 lines
261 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;
|
|
}
|
|
}
|