Jan Malte Gerth
Jan Malte Gerth
The example nginx config for the docker compose setup differs much with the one in the offical nextcloud docs: https://docs.nextcloud.com/server/28/admin_manual/installation/nginx.html
The `libs|vendor` location directive differes between the `nginx` template and the `docker` one: ```nginx location ~ ^/(libs|vendor|plugins|misc|node_modules) { deny all; return 403; } ``` source: https://github.com/matomo-org/matomo-nginx/blob/5b232af8ec1fd9d033f1c4ab9343f4073df64644/sites-available/matomo.conf#L80C11-L80C11 vs. ```nginx location ~...
closes #125, #100
Please publish a new release with django v4 support, which is already merged into the `master` branch. See: #1826
### Describe the issue If you are using an authentication backend which is populating a value for the primary key `weblate.auth.models.User.pk` for new users, the check for creating the `AuditLog`...
### Describe the issue The setter method used for the `DUMMY_FIELDS` for `first_name` and `last_name` in the `weblate.auth.models.User` is not working with the `django` internal `get_or_create()` `defaults` parameter. A `FieldError`...
### Actual Situation Some of our template files just contain dummy content or comments like ToDo markers. They get replaced by the developers, right after starting the project from the...
How can I use regex match groups and reference them in the `to` config? **Example** ```yaml services: app: image: namespace/project:1.0.0 command: "run-server" db: image: postgres:17.5 ``` ```js module.exports = {...