first commit

This commit is contained in:
Saufi
2026-06-24 20:32:14 +08:00
commit 10fb30ad69
201 changed files with 21356 additions and 0 deletions

78
docker/nginx/default.conf Normal file
View File

@@ -0,0 +1,78 @@
server {
listen 80;
listen [::]:80;
server_name _;
root /var/www/html/public;
index index.php;
charset utf-8;
# ── Laravel health check ──────────────────────────────────
location = /up {
access_log off;
fastcgi_pass app:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
# ── Aset statik — cache jangka panjang ───────────────────
location ~* \.(css|js|ico|png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot|webp)$ {
expires 1y;
add_header Cache-Control "public, immutable";
access_log off;
try_files $uri =404;
}
# ── Fail awam (storage/app/public) ────────────────────────
# Nota: laporan PDF disimpan di storage/app/private dan HANYA
# boleh dimuat turun melalui laluan Laravel terlindung polisi.
location /storage/ {
alias /var/www/html/storage/app/public/;
expires 30d;
add_header Cache-Control "public";
access_log off;
try_files $uri =404;
}
# ── Semua permintaan lain → Laravel ──────────────────────
location / {
try_files $uri $uri/ /index.php?$query_string;
}
# ── PHP-FPM ───────────────────────────────────────────────
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass app:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param PHP_VALUE "upload_max_filesize=25M \n post_max_size=30M";
include fastcgi_params;
fastcgi_connect_timeout 60s;
fastcgi_send_timeout 300s;
fastcgi_read_timeout 300s;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
}
# ── Sekat fail tersembunyi/dot ────────────────────────────
location ~ /\.(?!well-known).* {
deny all;
access_log off;
log_not_found off;
}
# ── Sekat fail sensitif ───────────────────────────────────
location ~* \.(env|log|git|gitignore|md|lock|json|yaml|yml)$ {
deny all;
access_log off;
log_not_found off;
}
error_page 404 /index.php;
error_page 500 502 503 504 /index.php;
}

48
docker/nginx/nginx.conf Normal file
View File

@@ -0,0 +1,48 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
client_max_body_size 30M;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_min_length 256;
gzip_types
text/plain
text/css
text/javascript
application/javascript
application/json
application/xml
image/svg+xml
font/woff
font/woff2;
include /etc/nginx/conf.d/*.conf;
}