Initial commit.
This commit is contained in:
22
nginx/conf.d/git.898.ro.conf
Normal file
22
nginx/conf.d/git.898.ro.conf
Normal file
@@ -0,0 +1,22 @@
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
|
||||
listen 192.168.1.2:443 ssl; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/git.898.ro/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/git.898.ro/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
|
||||
### redirect
|
||||
if ($scheme != "https") {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
server_name git.898.ro;
|
||||
|
||||
location / {
|
||||
proxy_pass http://10.208.1.81;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $http_host;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user