fixed: removed extra column at setup-mysql.sh script and changed access to robots.txt to deny all

This commit is contained in:
Ivan Iliev 2021-10-05 20:13:40 +03:00
parent 5ba1a41f78
commit c18df60b2a
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ server {
}
location = /robots.txt {
allow all;
denyall;
log_not_found off;
access_log off;
}

View File

@ -4,5 +4,5 @@ mysql -e "CREATE DATABASE psm;"
# Create user
mysql -e "CREATE USER 'psm'@'localhost' IDENTIFIED BY 'psm-dev-password';"
mysql -e "GRANT ALL PRIVILEGES ON psm.* TO 'psm'@'localhost';"
mysql -e "FLUSH PRIVILEGES;";
mysql -e "FLUSH PRIVILEGES;"