13 lines
222 B
Plaintext
13 lines
222 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
root /var/www/openems/html;
|
|
index index.html;
|
|
|
|
server_name _;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |