Skip to content

Commit

Permalink
Update support readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pldubouilh authored Aug 4, 2024
1 parent 5fbc140 commit f384c30
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion support/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if you prefer building the image yourself :

a docker-compose example image is also provided. running docker compose should be straightforward : `docker-compose up .` have a look in `docker-compose.yml` for further configuration.

## multi-account setup
## multi-account setup with Caddy

authentication / user routing has been left out of the design of gossa, as simple tools are already available for this purpose. [caddy](https://caddyserver.com) is used here as an example, but other proxy can be used in a similar fashion.

Expand Down Expand Up @@ -184,3 +184,12 @@ start 2 gossa instances, and caddy
% ./gossa -p 8002 -symlinks=true test/user2 &
% ./caddy
```
## nginx setup
In order to allow for larger uploads, it's recommended to increase the maximum body size on your nginx config :
```
# increase maximum request size
client_max_body_size 100M;
```

0 comments on commit f384c30

Please sign in to comment.