2025-02-23

2025-02-24
This commit is contained in:
gcch 2025-02-23 16:09:48 +01:00
commit 0f52ff0cef
40 changed files with 846 additions and 75 deletions

10
docker/default.conf Normal file
View file

@ -0,0 +1,10 @@
server {
listen 80;
server_name localhost;
root /usr/share/angie/html/;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}