Hi community
I’m crying my gitlab (latest update) is runing my life.
When i join the URL http or https, i have no css on web interface.
When i’m trying to git clone rippo it’s not working with http and asking password with https.
The gitlab was working good before last update. Here is my configuration
gitlab.rb
external_url ‘http://gitlab.stream-techs.com’
nginx[‘enable’] = false
web_server[‘external_users’] = [‘www-data’]
apache Vhost
<VirtualHost *:80>
ServerName gitlab.stream-techs.com
ServerSignature Off
ProxyPreserveHost On
ProxyPassReverse http://127.0.0.1:8080
ProxyPassReverse http://gitlab.stream-techs.com/
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule .* http://127.0.0.1:8080%{REQUEST_URI} [P,QSA]
needed for downloading attachments
DocumentRoot /opt/gitlab/embedded/service/gitlab-rails/public
RewriteCond %{SERVER_NAME} =gitlab.stream-techs.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]