-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update artifactory-oss.yml * Update prepareHostEnv.sh * Update README.md
- Loading branch information
Showing
4 changed files
with
53 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: '2' | ||
version: '3' | ||
services: | ||
artifactory: | ||
image: docker.bintray.io/jfrog/artifactory-oss:5.9.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
|
||
|
||
|
||
## add ssl entries when https has been set in config | ||
ssl_certificate /etc/nginx/ssl/example.pem; | ||
ssl_certificate_key /etc/nginx/ssl/example.key; | ||
ssl_session_cache shared:SSL:1m; | ||
ssl_prefer_server_ciphers on; | ||
## server configuration | ||
server { | ||
listen 443 ssl; | ||
listen 80 ; | ||
server_name ~(?<repo>.+)\.artifactory artifactory; | ||
|
||
if ($http_x_forwarded_proto = '') { | ||
set $http_x_forwarded_proto $scheme; | ||
} | ||
## Application specific logs | ||
## access_log /var/log/nginx/artifactory-access.log timing; | ||
## error_log /var/log/nginx/artifactory-error.log; | ||
rewrite ^/$ /artifactory/webapp/ redirect; | ||
rewrite ^/artifactory/?(/webapp)?$ /artifactory/webapp/ redirect; | ||
rewrite ^/(v1|v2)/(.*) /artifactory/api/docker/$repo/$1/$2; | ||
chunked_transfer_encoding on; | ||
client_max_body_size 0; | ||
location /artifactory/ { | ||
proxy_read_timeout 900; | ||
proxy_pass_header Server; | ||
proxy_cookie_path ~*^/.* /; | ||
proxy_pass http://artifactory:8081/artifactory/; | ||
proxy_set_header X-Artifactory-Override-Base-Url $http_x_forwarded_proto://$host:$server_port/artifactory; | ||
proxy_set_header X-Forwarded-Port $server_port; | ||
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; | ||
proxy_set_header Host $http_host; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
} | ||
} |