I have the Gitlab CE installed on a Ubuntu Virtual machine. I have purchased a domain that directs traffic like gitlab.mydomain.com to the ubuntu server running gitlab. Now I am going to also send every request to mydomain to the same Ubuntu.
I would like to configure the existing nginx in the gitlab CE to forward www request to a raspberry pi running Debian and nginx with ip 192.168.0.241. I already modified the gitlab.rb file to include custom nginx configuration files.
But now what should this configuration include so that only www traffic in http and https are forwarded correctly? so far i have this:
server {
servername www.mydomain.com;
location / {
proxypass http://192.168.0.241:80;
proxysetheader Host www.mydomain.com;
}
}
But what about https? If this works, I suppose I have to add a redirect HTTP to https rule also?
Or should I be better to let all traffic arrive on the RPI and then use the local nginx there to forward any request to gitlab.mydomain.com to the Ubuntu virtual machine? Thank you for your advice, Didier