feat: implement core architecture and dashboard UI for service and project management

This commit is contained in:
Ümit Tunç
2026-03-28 09:58:49 +03:00
parent 4195cdfa8b
commit 164fabc174
7 changed files with 192 additions and 25 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
[mysqld]
port=3306
port={{PORT}}
datadir="{{DATADIR}}"
socket="{{SOCKET}}"
character-set-server=utf8mb4
collation-server=utf8mb4_unicode_ci
[client]
port=3306
port={{PORT}}
socket="{{SOCKET}}"
default-character-set=utf8mb4
+1 -1
View File
@@ -19,7 +19,7 @@ http {
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_pass 127.0.0.1:{{PHP_PORT}};
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;