mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-16 18:40:46 +01:00
9 lines
123 B
Plaintext
9 lines
123 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
}
|