This commit is contained in:
2024-12-23 00:48:03 +01:00
commit 7e7b0b5aca
12 changed files with 109 additions and 0 deletions

13
installation/nginx-config Normal file
View File

@ -0,0 +1,13 @@
server {
listen 80;
listen [::]:80;
root /var/www/openems/html;
index index.html;
server_name _;
location / {
try_files $uri $uri/ /index.html;
}
}