26 lines
858 B
Nginx Configuration File
26 lines
858 B
Nginx Configuration File
server {
|
|
listen 443;
|
|
ssl on;
|
|
ssl_certificate %%server_cert;
|
|
ssl_certificate_key %%server_key;
|
|
ssl_client_certificate /etc/ssl/certs/ca.crt;
|
|
access_log /var/log/nginx/revprox.revprox_http.access-ssl.log;
|
|
server_name %%gogs_web_name;
|
|
error_page 403 404 502 503 504 /nginx.html;
|
|
location = /nginx.html{
|
|
root /usr/share/nginx/www;
|
|
}
|
|
location / {
|
|
proxy_pass https://%%container_ip_forge:%%git_http_port;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Destination $dest;
|
|
set $dest $http_destination;
|
|
#2132
|
|
index 50x.html;
|
|
root /usr/share/nginx/www/;
|
|
}
|
|
}
|
|
|