Gitlab and apache

Gitlab and apache

Regards
I am installing Gitlab last version but I require the web server to be Apache.

edit /etc/gitlab/gitlab.rb where

web_server [‘external_users’] = [apache]
nginx [‘enable’] = false

and add usermod apache --append --groups gitlab-www

virtual host es
<VirtualHost *:80>
ServerName gitlab-dev
DocumentRoot /opt/gitlab/embedded/service/gitlab-rails/public

ProxyPreserveHost On
AllowEncodedSlashes Off

Order deny,allow Allow from all ProxyPassReverse http://127.0.0.1:8080/ ProxyPassReverse http://172.29.93.29:8080/

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

I have the problem that the page loads me without styles

Any updates on this ? I have the exact same problem