mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
18 lines
386 B
Plaintext
18 lines
386 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
http2 on;
|
|
server_name ${PHPMYADMIN_SERVER_NAME};
|
|
|
|
ssl_certificate /certs/fullchain.pem;
|
|
ssl_certificate_key /certs/private.key;
|
|
|
|
location / {
|
|
proxy_pass http://phpmyadmin:80;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
|
|
error_log /dev/stderr;
|
|
access_log /dev/stdout;
|
|
}
|