diff --git a/pg.hba.conf b/pg.hba.conf new file mode 100644 index 000000000..1e464255e --- /dev/null +++ b/pg.hba.conf @@ -0,0 +1,44 @@ +# Database and user names containing spaces, commas, quotes and other +# special characters must be quoted. Quoting one of the keywords +# "all", "sameuser", "samerole" or "replication" makes the name lose +# its special character, and just match a database or username with +# that name. +# +# This file is read on server startup and when the server receives a +# SIGHUP signal. If you edit the file on a running system, you have to +# SIGHUP the server for the changes to take effect, run "pg_ctl reload", +# or execute "SELECT pg_reload_conf()". +# +# Put your actual configuration here +# ---------------------------------- +# +# If you want to allow non-local connections, you need to add more +# "host" records. In that case you will also need to make PostgreSQL +# listen on a non-local interface via the listen_addresses +# configuration parameter, or via the -i or -h command line switches. + + + + +# DO NOT DISABLE! +# If you change this first entry you will need to make sure that the +# database superuser can access the database using some other method. +# Noninteractive access to all databases is required during automatic +# maintenance (custom daily cronjobs, replication, and similar tasks). +# +# Database administrative login by Unix domain socket +local all postgres trust + +# TYPE DATABASE USER ADDRESS METHOD + +# "local" is for Unix domain socket connections only +local all all trust +# IPv4 local connections: +host all all 127.0.0.1/32 trust +# IPv6 local connections: +host all all ::1/128 trust +# Allow replication connections from localhost, by a user with the +# replication privilege. +local replication all trust +host replication all 127.0.0.1/32 trust +host replication all ::1/128 trust \ No newline at end of file diff --git a/readme.md b/readme.md index dd9f13d44..e1a5b69db 100644 --- a/readme.md +++ b/readme.md @@ -54,7 +54,7 @@ source setup 5- Optional: to change the domain from "localhost" to something else and configure the site settings, as well as integrate it with the external services the website uses, please run this command and edit the variables: ``` -nano /drama/env.sh +nano /env ``` then run `source restart` to apply the changes. diff --git a/setup b/setup index c2a9a20f0..8eac00bd1 100644 --- a/setup +++ b/setup @@ -5,6 +5,8 @@ sudo apt install redis-server rm /etc/redis/redis.conf cp /drama/redis.conf /etc/redis/redis.conf sudo systemctl restart redis.service +rm /etc/postgresql/12/main/pg_hba.conf +cp /drama/pg_hba.conf /etc/postgresql/12/main/pg_hba.conf apt install python3-pip sudo pip3 install -r requirements.txt cp env /env