christianlempa-boilerplates/docker-compose/nginx/config/nginx.conf
2024-04-24 17:40:07 +02:00

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;
}
}
}