Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Ansible/ansible_collections/jfrog/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All changes to this collection will be documented in this file.
## [11.5.3] - May 19, 2026
* Update dependency artifactory version to 7.146.12
* Update dependency xray version to 3.143.16
* Artifactory NGINX - Added `artifactory_nginx_proxy_max_temp_file_size` to configure `proxy_max_temp_file_size` [GH-445](https://github.com/jfrog/JFrog-Cloud-Installers/issues/445)

## [11.5.2] - May 13, 2026
* Update dependency artifactory version to 7.146.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The artifactory_nginx role installs and Optionally configures nginx for SSL.
* _nginx_worker_processes_: The worker_processes configuration for nginx. Defaults to 1.
* _artifactory_docker_registry_subdomain_: Whether to add a redirect directive to the nginx config for the use of docker
subdomains.
* _artifactory_nginx_proxy_max_temp_file_size_: Sets the NGINX `proxy_max_temp_file_size` directive in the Artifactory reverse proxy. Defaults to `1024m`; set to `0` to disable the limit.

* _mtls_ca_certificate_install_: `false` - Enable mTLS by updating to `true`
* _mtls_mtls_ca_certificate_crt_name_: This is the filename of the CA certificate for mTLS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ redirect_http_to_https_enabled: true

nginx_worker_processes: 1
artifactory_docker_registry_subdomain: false
artifactory_nginx_proxy_max_temp_file_size: 1024m

artifactory_conf_template: artifactory.conf.j2
nginx_conf_template: nginx.conf.j2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
{% if artifactory_docker_registry_subdomain %}rewrite ^/(v1|v2)/(.*) /artifactory/api/docker/$repo/$1/$2;{% endif %}
chunked_transfer_encoding on;
client_max_body_size 0;
proxy_max_temp_file_size {{ artifactory_nginx_proxy_max_temp_file_size }};
location / {
proxy_read_timeout 2400s;
proxy_pass_header Server;
Expand All @@ -64,4 +65,4 @@
proxy_pass http://artifactory-direct;
}
}
}
}
Loading