Initial commit

This commit is contained in:
Scott Idem
2023-02-22 16:40:16 -05:00
parent d18de5507b
commit cc767aac25
52 changed files with 2588 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
server {
listen 80;
listen [::]:80;
server_name phpmyadmin-oneskyit.localhost phpmyadmin.oneskyit.com;
access_log /logs/nginx/access_oneskyit_phpmyadmin.log;
index index.php;
location / {
proxy_pass http://phpmyadmin:80;
proxy_pass_header Content-Type;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade; # allow websockets
proxy_pass_header Connection;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
}
}