Added: wikijs

This commit is contained in:
2023-01-02 12:23:38 +05:30
parent 67750b459d
commit ae6fde8113
5 changed files with 142 additions and 0 deletions

6
wikijs/files/.env Normal file
View File

@ -0,0 +1,6 @@
DB_TYPE=postgres
DB_NAME=hiwikijs
DB_USER=postgres
DB_PASS=123456
DB_HOST=db
DB_PORT=5432

View File

@ -0,0 +1,13 @@
server {
listen 80;
server_name {{ http_host }};
location / {
proxy_pass http://localhost:3443;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}