founs some nice free icons from font awsome, and added them, also added default dockker stuff for easy deployment

This commit is contained in:
mate.kerner
2026-06-10 14:57:06 +02:00
parent 72df448dea
commit 10c4c0527c
17 changed files with 288 additions and 0 deletions

19
default.conf Normal file
View File

@@ -0,0 +1,19 @@
server {
listen 80;
server_name _;
client_max_body_size 20M;
root /var/www/ProjectKiln;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}