Files

15 lines
330 B
Plaintext
Raw Permalink Normal View History

2025-04-27 21:09:42 +07:00
server {
2025-04-28 21:33:02 +07:00
listen 443 ssl;
http2 on;
2025-04-27 21:09:42 +07:00
server_name ${PHPMYADMIN_SERVER_NAME};
2025-04-28 20:21:32 +07:00
ssl_certificate /certs/fullchain.pem;
2025-04-29 01:24:13 +07:00
ssl_certificate_key /certs/private.key;
2025-04-27 21:09:42 +07:00
location / {
proxy_pass http://phpmyadmin:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}