No css - gitlab not working

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 :slight_smile:

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

Order deny,allow Allow from all
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]

ok find the solution for those who use apache2.4 on debian jessie 8

use this vhost

<VirtualHost *:80>

ServerName git.example.com
DocumentRoot /opt/gitlab/embedded/service/gitlab-rails/public
ProxyPreserveHost On
AllowEncodedSlashes NoDecode

Order deny,allow Allow from all Require all granted ProxyPassReverse http://127.0.0.1:8181 ProxyPassReverse http://git.example.com/

RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule .* http://127.0.0.1:8080%{REQUEST_URI} [P,QSA]

and put this in gitlab.rb

gitlab_workhorse[‘listen_network’] = “tcp”
gitlab_workhorse[‘listen_addr’] = “127.0.0.1:8181”