Skip to content

Commit

Permalink
Merge pull request #7 from pipech/develop
Browse files Browse the repository at this point in the history
fix Internal Server Error
  • Loading branch information
pipech authored May 24, 2018
2 parents 2d7959d + dd9c135 commit 153f97b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions production_setup/conf/mariadb-conf/init.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
UPDATE mysql.user SET host = '10.0.0.%' WHERE host LIKE '10.0.0.%' AND user != 'root';
UPDATE mysql.db SET host = '10.0.0.%' WHERE host LIKE '10.0.0.%' AND user != 'root';
UPDATE mysql.user SET host = '10.0.%.%' WHERE host LIKE '10.0.%.%' AND user != 'root';
UPDATE mysql.db SET host = '10.0.%.%' WHERE host LIKE '10.0.%.%' AND user != 'root';
FLUSH PRIVILEGES;

0 comments on commit 153f97b

Please sign in to comment.