mirror of
https://gitlab.com/MisterBiggs/hello-world-nginx.git
synced 2025-07-28 09:01:33 +00:00
19 lines
226 B
Nginx Configuration File
19 lines
226 B
Nginx Configuration File
daemon off;
|
|
pid /var/lib/nginx/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
index index.html;
|
|
|
|
server {
|
|
listen *:80;
|
|
|
|
location / {
|
|
root /www-data;
|
|
}
|
|
}
|
|
} |