mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-26 10:15:56 +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;
|
||
|
}
|
||
|
}
|