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.

bookstack.auxilife.eu 406 B

1234567891011121314151617181920212223
  1. server {
  2. server_name bookstack.auxilife.eu;
  3. location / {
  4. proxy_pass http://127.0.0.1:6865;
  5. proxy_set_header X-Real-IP $remote_addr;
  6. proxy_set_header Host $host;
  7. }
  8. }
  9. server {
  10. if ($host = bookstack.auxilife.eu) {
  11. return 301 https://$host$request_uri;
  12. }
  13. server_name bookstack.auxilife.eu;
  14. listen 80;
  15. }