Browse Source

Merge pull request #198 from Ritesh-patel/patch-1

Add simple redirection for adminer
old-stable
Mitesh Shah 11 years ago
parent
commit
2cdd3ec904
  1. 5
      etc/nginx/common/locations.conf

5
etc/nginx/common/locations.conf

@ -72,3 +72,8 @@ location /phpMyAdmin {
location /phpmyadmin { location /phpmyadmin {
return 301 https://$host:22222/db/pma; return 301 https://$host:22222/db/pma;
} }
# Adminer Settings
location /adminer {
return 301 https://$host:22222/db/adminer;
}

Loading…
Cancel
Save