remotes/1693045480750635534/spooky-22
Aevann1 2021-09-06 01:34:56 +02:00
parent 51068db637
commit c0d744d760
3 changed files with 47 additions and 1 deletions

44
pg.hba.conf 100644
View File

@ -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

View File

@ -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.

2
setup
View File

@ -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