mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 03:57:22 +08:00
add docker
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
server_name ${PHPMYADMIN_SERVER_NAME};
|
||||
|
||||
ssl_certificate /certs/live/fullchain.pem;
|
||||
ssl_certificate_key /certs/live/privkey.pem;
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user