installation de bookstack via docker-compose sur un nas synology
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- server {
- server_name bookstack.auxilife.eu;
-
- location / {
- proxy_pass http://127.0.0.1:6865;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header Host $host;
- }
-
- }
-
- server {
- if ($host = bookstack.auxilife.eu) {
- return 301 https://$host$request_uri;
-
- }
-
- server_name bookstack.auxilife.eu;
- listen 80;
- }
-
-
|