DONE: update .env and docker compose port forwarding
Build Docker Image / build-backend (push) Successful in 36s
Build Docker Image / build-frontend (push) Successful in 34s

This commit is contained in:
ISMAIL MASSERAN
2026-06-30 12:49:32 +08:00
parent dcc150319a
commit 1706fb639e
6 changed files with 47 additions and 31 deletions
+6 -8
View File
@@ -28,6 +28,12 @@ http {
try_files $uri $uri/ /index.php?$query_string;
}
location = /health {
access_log off;
default_type text/plain;
return 200 'ok';
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
@@ -43,14 +49,6 @@ http {
deny all;
}
location = /health {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
include fastcgi_params;
fastcgi_param HTTP_PROXY "";
}
location ^~ /horizon {
add_header Content-Security-Policy "default-src 'self' http: https: data: blob 'unsafe-inline' 'unsafe-eval'" always;
fastcgi_pass 127.0.0.1:9000;