- place this config in
/etc/systemd/system/supervisord.service
- kill all supervisord processes
sudo systemctl daemon-reload
sudo systemctl enable supervisord
- start with
sudo systemctl start supervisord
if already not started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location /phpmyadmin { | |
root /usr/share/; | |
index index.php; | |
try_files $uri $uri/ =404; | |
location ~ ^/phpmyadmin/(doc|sql|setup)/ { | |
deny all; | |
} | |
location ~ /phpmyadmin/(.+\.php)$ { |