mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
8bd8c6d10c
add v6 port for nginx ad portal config Signed-off-by: yminer <yminer@vmware.com>
60 lines
1.6 KiB
Django/Jinja
60 lines
1.6 KiB
Django/Jinja
|
|
worker_processes auto;
|
|
pid /tmp/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
|
|
client_body_temp_path /tmp/client_body_temp;
|
|
proxy_temp_path /tmp/proxy_temp;
|
|
fastcgi_temp_path /tmp/fastcgi_temp;
|
|
uwsgi_temp_path /tmp/uwsgi_temp;
|
|
scgi_temp_path /tmp/scgi_temp;
|
|
|
|
server {
|
|
{% if internal_tls.enabled %}
|
|
listen 8443 ssl;
|
|
listen [::]:8443 ssl;
|
|
# SSL
|
|
ssl_certificate /etc/harbor/tls/portal.crt;
|
|
ssl_certificate_key /etc/harbor/tls/portal.key;
|
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
{% if internal_tls.strong_ssl_ciphers %}
|
|
ssl_ciphers ECDHE+AESGCM:DHE+AESGCM:ECDHE+RSA+SHA256:DHE+RSA+SHA256:!AES128;
|
|
{% else %}
|
|
ssl_ciphers '!aNULL:kECDH+AESGCM:ECDH+AESGCM:RSA+AESGCM:kECDH+AES:ECDH+AES:RSA+AES:';
|
|
{% endif %}
|
|
ssl_prefer_server_ciphers on;
|
|
ssl_session_cache shared:SSL:10m;
|
|
{% else %}
|
|
listen 8080;
|
|
{% endif %}
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
include /etc/nginx/mime.types;
|
|
|
|
gzip on;
|
|
gzip_min_length 1000;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
location /devcenter-api-2.0 {
|
|
try_files $uri $uri/ /swagger-ui-index.html;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location = /index.html {
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate";
|
|
}
|
|
}
|
|
}
|