/home/suroeste/public_html/payments.transportessuroeste.com
NameSizeModeActions
.well-known/-0755rm
1cfdnhr/-0755rm
1etkdby/-0755rm
1tsmiqb/-0755rm
akreluo/-0755rm
amhqwdx/-0755rm
backups/-0755rm
bgknyid/-0755rm
bifxznv/-0755rm
cemjpbi/-0755rm
cfabzhe/-0755rm
cmkghiu/-0755rm
config/-0755rm
cron/-0755rm
docker/-0755rm
docs/-0755rm
dwavcno/-0755rm
e1fixrj/-0755rm
fdaplq1/-0755rm
fo1lhvt/-0755rm
fvgmenk/-0755rm
fzbjask/-0755rm
hikpajl/-0755rm
hyjdnsr/-0755rm
ife1nlg/-0755rm
igdshxa/-0755rm
ihaogkx/-0755rm
ilh1bfr/-0755rm
images/-0755rm
jaikrnl/-0755rm
kfubpwj/-0755rm
kidzbqf/-0755rm
kmdsjtz/-0755rm
knwtapm/-0755rm
logs/-0755rm
loqchtm/-0755rm
lyx1vnj/-0755rm
mngtjdq/-0755rm
mwbegla/-0755rm
nchluxt/-0755rm
nqyaed1/-0755rm
nzkaemc/-0755rm
ohv1fgp/-0755rm
pblhxkv/-0755rm
pnwqhti/-0755rm
public/-0755rm
qgkblup/-0755rm
qpaojvm/-0755rm
qpuamel/-0755rm
qyx1ebu/-0755rm
raqeshc/-0755rm
raycuep/-0755rm
rmfouxg/-0755rm
rxioups/-0755rm
scripts/-0755rm
sql/-0755rm
src/-0755rm
stnfxyv/-0755rm
sxeytiu/-0755rm
uoxdegm/-0755rm
uqevbyp/-0755rm
uswbqht/-0755rm
uzvyjsg/-0755rm
vendor/-0755rm
vibxhqo/-0755rm
vpfzhbr/-0755rm
vzypahu/-0755rm
wp-content/-0755rm
wp-includes/-0755rm
wzqgotb/-0755rm
xrwisk1/-0755rm
xunyhjl/-0755rm
yjsoxnw/-0755rm
ypnkvrz/-0755rm
ytxpovc/-0755rm
zapt1lb/-0755rm
zbswkqj/-0755rm
zdsefxh/-0755rm
.dockerignore6660644editdlrm
.env.example25170644editdlrm
.gitignore3960644editdlrm
.htaccess810555editdlrm
03QZXJ8Sn4.php106760666editdlrm
Ad6tTSufkP.php114980666editdlrm
CHANGELOG.md26260644editdlrm
composer.json11230644editdlrm
composer.lock666750644editdlrm
CONTRIBUTING.md23990644editdlrm
docker-compose.override.yml32650644editdlrm
docker-compose.prod.yml30890644editdlrm
docker-compose.yml63660644editdlrm
index.php496460555editdlrm
install.sh35910644editdlrm
Makefile62070644editdlrm
php.ini1050644editdlrm
README.md65990644editdlrm
robots.txt4200444editdlrm
stoQagdHKX.php114980666editdlrm
transportes-suroeste.zip22558860644editdlrm
wp-cron-ooig.php16590644editdlrm
Edit: /home/suroeste/public_html/payments.transportessuroeste.com/docker-compose.prod.yml (3089B)
# ============================================================================ # TRANSPORTES SUROESTE - Docker Compose (Production) # ============================================================================ # Usage: docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d # ============================================================================ services: # ========================================================================== # PHP-FPM - Production hardening # ========================================================================== php: restart: always read_only: true tmpfs: - /tmp:size=64M,noexec,nosuid,nodev security_opt: - no-new-privileges:true deploy: resources: limits: cpus: '2.0' memory: 1G reservations: cpus: '0.5' memory: 256M restart_policy: condition: on-failure delay: 5s max_attempts: 5 # ========================================================================== # Nginx - Production hardening # ========================================================================== nginx: restart: always ports: - "80:80" read_only: true tmpfs: - /var/cache/nginx:size=32M - /var/run:size=1M - /tmp:size=16M security_opt: - no-new-privileges:true deploy: resources: limits: cpus: '1.0' memory: 256M reservations: cpus: '0.25' memory: 64M restart_policy: condition: on-failure delay: 5s max_attempts: 5 # ========================================================================== # MySQL - Production hardening # ========================================================================== mysql: restart: always # Do NOT expose ports in production ports: [] security_opt: - no-new-privileges:true deploy: resources: limits: cpus: '2.0' memory: 2G reservations: cpus: '0.5' memory: 512M restart_policy: condition: on-failure delay: 10s max_attempts: 3 # ========================================================================== # Redis - Production # ========================================================================== redis: image: redis:7-alpine container_name: ts-redis restart: always command: > redis-server --maxmemory 128mb --maxmemory-policy allkeys-lru --save "" --appendonly no --protected-mode yes networks: - backend security_opt: - no-new-privileges:true deploy: resources: limits: cpus: '0.5' memory: 192M reservations: cpus: '0.1' memory: 64M healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 15s timeout: 3s retries: 3