mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-03-09 20:51:15 +01:00
15 lines
188 B
Nginx Configuration File
15 lines
188 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
}
|
|
}
|