قرار المالك 2026-07-27: باك إند سيرو PHP هو المعتمد، وتطبيقاته المجرّبة ميدانياً تحل محل إعادة البناء المؤرشفة. سيرو نفسه لم يُمسّ. الخريطة: backend · payment_server · loction_server · ride_server · passenger_server · docker · dashboard · stress_test → الجذر siro_rider → apps/rider siro_driver → apps/driver siro_admin → dashboards/admin siro_service → dashboards/service android_bot → apps/android_bot socialBot → apps/socialBot نُسخ المتعقَّب في git سيرو فقط عبر `git archive` (3,198 ملفاً / ~169 م.ب) لا `cp -r` — فاستُثنيت مخلفات البناء تلقائياً. بلا أي تعديل محتوى عمداً: كل ما يلي يصير فرقاً مقروءاً مقابل المصدر. لم يُستورد وسببه: siromove.com (الموقع التسويقي يبقى marketing/ في تريبز، سيرو فيه 8 ملفات) · docs و planning (تريبز له docs/ الخاص) · deploy.sh (ليس نشراً على سيرفر بل `git add . && git push origin --all` — فخّ في مستودع آخر) · transit_dashboard (بانتظار قرار مصير backend-transit و dashboards/transit-web). ⚠️ لا يبني بعد — ثلاثة نواقص متوقعة ومقصودة: 1. `.env` و `lib/env/env.g.dart` غير متعقَّبين في سيرو (أسرار لكل مستأجر): كل تطبيق فلاتر يحتاج .env خاصاً ثم توليد env.g.dart بـ build_runner. 2. إعدادات Firebase (9 ملفات google-services.json و GoogleService-Info.plist) يستبعدها .gitignore تريبز — ولكل مستأجر مشروع Firebase خاص أصلاً. 3. apps/driver في سيرو يشير إلى `../../Intaleq/packages/get` خارج المستودع → يجب ضمّ الحزم داخله أسوة بـ apps/rider. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
198 lines
5.4 KiB
PHP
198 lines
5.4 KiB
PHP
sefer cairo server
|
|
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
{{ssl_certificate_key}}
|
|
{{ssl_certificate}}
|
|
server_name www.sefer.click;
|
|
return 301 https://sefer.click$request_uri;
|
|
}
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
{{ssl_certificate_key}}
|
|
{{ssl_certificate}}
|
|
server_name sefer.click www1.sefer.click;
|
|
{{root}}
|
|
{{nginx_access_log}}
|
|
{{nginx_error_log}}
|
|
# Set the maximum request body size
|
|
client_max_body_size 10m;
|
|
if ($scheme != "https") {
|
|
rewrite ^ https://$host$uri permanent;
|
|
}
|
|
location ~ /.well-known {
|
|
auth_basic off;
|
|
allow all;
|
|
}
|
|
# Security headers
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
|
add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline';" always;
|
|
add_header Referrer-Policy "no-referrer-when-downgrade" always;
|
|
add_header Permissions-Policy "geolocation=(), microphone=()" always;
|
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
|
add_header X-Content-Type-Options "nosniff" always;
|
|
|
|
{{settings}}
|
|
location / {
|
|
{{varnish_proxy_pass}}
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_hide_header X-Varnish;
|
|
proxy_redirect off;
|
|
proxy_max_temp_file_size 0;
|
|
proxy_connect_timeout 720;
|
|
proxy_send_timeout 720;
|
|
proxy_read_timeout 720;
|
|
proxy_buffer_size 128k;
|
|
proxy_buffers 4 256k;
|
|
proxy_busy_buffers_size 256k;
|
|
proxy_temp_file_write_size 256k;
|
|
}
|
|
location ~* ^.+\.(css|js|jpg|jpeg|gif|png|ico|gz|svg|svgz|ttf|otf|woff|woff2|eot|mp4|ogg|ogv|webm|webp|zip|swf|map|mjs)$ {
|
|
add_header Access-Control-Allow-Origin "*";
|
|
expires max;
|
|
access_log off;
|
|
}
|
|
location ~ /\.(ht|svn|git) {
|
|
deny all;
|
|
}
|
|
if (-f $request_filename) {
|
|
break;
|
|
}
|
|
}
|
|
server {
|
|
listen 8080;
|
|
listen [::]:8080;
|
|
server_name sefer.click www1.sefer.click;
|
|
{{root}}
|
|
try_files $uri $uri/ /index.php?$args;
|
|
index index.php index.html;
|
|
location ~ \.php$ {
|
|
include fastcgi_params;
|
|
fastcgi_intercept_errors on;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
try_files $uri =404;
|
|
fastcgi_read_timeout 3600;
|
|
fastcgi_send_timeout 3600;
|
|
proxy_read_timeout 3600;
|
|
proxy_send_timeout 3600;
|
|
fastcgi_param HTTPS "on";
|
|
fastcgi_param SERVER_PORT 443;
|
|
fastcgi_pass 127.0.0.1:{{php_fpm_port}};
|
|
fastcgi_param PHP_VALUE "{{php_settings}}";
|
|
}
|
|
if (-f $request_filename) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
wallet server
|
|
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
{{ssl_certificate_key}}
|
|
{{ssl_certificate}}
|
|
server_name www.seferpw.shop;
|
|
return 301 https://seferpw.shop$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
{{ssl_certificate_key}}
|
|
{{ssl_certificate}}
|
|
server_name seferpw.shop www1.seferpw.shop 156.67.82.188;
|
|
{{root}}
|
|
{{nginx_access_log}}
|
|
{{nginx_error_log}}
|
|
# Set the maximum request body size
|
|
client_max_body_size 10m;
|
|
if ($scheme != "https") {
|
|
rewrite ^ https://$host$uri permanent;
|
|
}
|
|
location ~ /.well-known {
|
|
auth_basic off;
|
|
allow all;
|
|
}
|
|
# Security headers
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
|
add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline';" always;
|
|
add_header Referrer-Policy "no-referrer-when-downgrade" always;
|
|
add_header Permissions-Policy "geolocation=(), microphone=()" always;
|
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
|
add_header X-Content-Type-Options "nosniff" always;
|
|
|
|
{{settings}}
|
|
location / {
|
|
{{varnish_proxy_pass}}
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_hide_header X-Varnish;
|
|
proxy_redirect off;
|
|
proxy_max_temp_file_size 0;
|
|
proxy_connect_timeout 720;
|
|
proxy_send_timeout 720;
|
|
proxy_read_timeout 720;
|
|
proxy_buffer_size 128k;
|
|
proxy_buffers 4 256k;
|
|
proxy_busy_buffers_size 256k;
|
|
proxy_temp_file_write_size 256k;
|
|
}
|
|
location ~* ^.+\.(css|js|jpg|jpeg|gif|png|ico|gz|svg|svgz|ttf|otf|woff|woff2|eot|mp4|ogg|ogv|webm|webp|zip|swf|map|mjs)$ {
|
|
add_header Access-Control-Allow-Origin "*";
|
|
expires max;
|
|
access_log off;
|
|
}
|
|
location ~ /\.(ht|svn|git) {
|
|
deny all;
|
|
}
|
|
if (-f $request_filename) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 8080;
|
|
listen [::]:8080;
|
|
server_name seferpw.shop www1.seferpw.shop 156.67.82.188;
|
|
{{root}}
|
|
try_files $uri $uri/ /index.php?$args;
|
|
index index.php index.html;
|
|
location ~ \.php$ {
|
|
include fastcgi_params;
|
|
fastcgi_intercept_errors on;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
try_files $uri =404;
|
|
fastcgi_read_timeout 3600;
|
|
fastcgi_send_timeout 3600;
|
|
proxy_read_timeout 3600;
|
|
proxy_send_timeout 3600;
|
|
fastcgi_param HTTPS "on";
|
|
fastcgi_param SERVER_PORT 443;
|
|
fastcgi_pass 127.0.0.1:{{php_fpm_port}};
|
|
fastcgi_param PHP_VALUE "{{php_settings}}";
|
|
}
|
|
if (-f $request_filename) {
|
|
break;
|
|
}
|
|
} |