mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Print some helpful notice for PostgreSQL configuration
This commit is contained in:
parent
fe53b5503c
commit
1f359f5a13
1 changed files with 19 additions and 0 deletions
|
@ -39,3 +39,22 @@ else
|
||||||
sudo -u postgres -- psql -c "CREATE DATABASE invidious WITH OWNER kemal;"
|
sudo -u postgres -- psql -c "CREATE DATABASE invidious WITH OWNER kemal;"
|
||||||
sudo -u postgres -- psql -c "GRANT ALL ON DATABASE invidious TO kemal;"
|
sudo -u postgres -- psql -c "GRANT ALL ON DATABASE invidious TO kemal;"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Instructions for modification of pg_hba.conf
|
||||||
|
#
|
||||||
|
|
||||||
|
if [ "$interactive" = "true" ]; then
|
||||||
|
echo
|
||||||
|
echo "-------------"
|
||||||
|
echo " NOTICE "
|
||||||
|
echo "-------------"
|
||||||
|
echo
|
||||||
|
echo "Make sure that your postgreSQL's pg_hba.conf file contains the follwong"
|
||||||
|
echo "lines before previous 'host' configurations:"
|
||||||
|
echo
|
||||||
|
echo "host invidious kemal 127.0.0.1/32 md5"
|
||||||
|
echo "host invidious kemal ::1/128 md5"
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue