mirror of
https://gitlab.com/MisterBiggs/hello-world-nginx.git
synced 2025-07-28 17:11:25 +00:00
initial
This commit is contained in:
19
nginx.conf
Normal file
19
nginx.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user