Added: wikijs
This commit is contained in:
6
wikijs/files/.env
Normal file
6
wikijs/files/.env
Normal file
@ -0,0 +1,6 @@
|
||||
DB_TYPE=postgres
|
||||
DB_NAME=hiwikijs
|
||||
DB_USER=postgres
|
||||
DB_PASS=123456
|
||||
DB_HOST=db
|
||||
DB_PORT=5432
|
||||
13
wikijs/files/nginx.conf.j2
Normal file
13
wikijs/files/nginx.conf.j2
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user