2014-04-29 23 views
3

我無法訪問我的robots.txt(當地位於/home/git/gitlab/public/robots.txt)
我跟着this recipe安裝在CentOS + Apache的如何在gitlab和apache +子域中使用robots.txt?

我已經嘗試排除的robots.txt但是這wasnt足夠 這是我目前的虛擬主機的gitlab

<VirtualHost git.domain.tld:80>            
    ServerName git.domain.tld 
    ServerSignature Off              
    ProxyPreserveHost On               

    <Location />                 
    Order deny,allow                
    Allow from all                

    ProxyPassReverse http://127.0.0.1:8080          
    ProxyPassReverse http://git.domain.tld/ 
    </Location>                 

    #apache equivalent of nginx try files           
    # http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files                  
    # http://stackoverflow.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab   

RewriteEngine on                

    RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f       

    RewriteRule .* http://127.0.0.1:8080%{REQUEST_URI} [P,QSA]      
    # needed for downloading attachments           
    DocumentRoot /home/git/gitlab/public           


    #Set up apache error documents, if back end goes down (i.e. 503 error) then a maintenance/deploy page is thrown up.           
    ErrorDocument 404 /404.html             
    ErrorDocument 422 /422.html             
    ErrorDocument 500 /500.html             
    ErrorDocument 503 /deploy.html             

    LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b" common_forwarded  
    ErrorLog /var/log/httpd/logs/gitlab_error.log   
    CustomLog /var/log/httpd/logs/gitlab_forwarded.log common_forwarded   
    CustomLog /var/log/httpd/logs/gitlab_access.log combined env=!dontlog   
    CustomLog /var/log/httpd/logs/gitlab.log combined        
</VirtualHost>    
+0

您是否在添加robots.txt文件後運行了'sudo /etc/init.d/gitlab restart'? – jvanbaarsen

回答

0

嘗試改變 /home/git/gitlab/config/environments/production.rb config.serve_static_assets =真 (這是假的默認)