Merge "codesearch: Add robots.txt"
This commit is contained in:
commit
e48ac000e3
2
playbooks/roles/codesearch/files/robots.txt
Normal file
2
playbooks/roles/codesearch/files/robots.txt
Normal file
@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow: /
|
@ -44,6 +44,19 @@
|
||||
group: root
|
||||
mode: 0755
|
||||
|
||||
- name: Create hound www storage area
|
||||
file:
|
||||
state: directory
|
||||
path: /var/lib/hound/www
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0755
|
||||
|
||||
- name: Copy hound robots.txt
|
||||
copy:
|
||||
src: robots.txt
|
||||
dest: /var/lib/hound/www/robots.txt
|
||||
|
||||
- name: Run docker-compose pull
|
||||
shell:
|
||||
cmd: docker-compose pull
|
||||
|
@ -40,5 +40,13 @@
|
||||
ProxyPass / http://localhost:6080/ retry=0
|
||||
ProxyPassReverse / http://localhost:6080/
|
||||
|
||||
<Location "/robots.txt">
|
||||
ProxyPass !
|
||||
</Location>
|
||||
<Directory "/var/lib/hound/www">
|
||||
Require all granted
|
||||
</Directory>
|
||||
Alias /robots.txt /var/lib/hound/www/robots.txt
|
||||
|
||||
</VirtualHost>
|
||||
|
||||
|
@ -25,3 +25,9 @@ def test_codesearch_proxy(host):
|
||||
'--resolve codesearch.opendev.org:443:127.0.0.1 '
|
||||
'https://codesearch.opendev.org')
|
||||
assert '<title>Hound</title>' in cmd.stdout
|
||||
|
||||
def test_codesearch_robots(host):
|
||||
cmd = host.run('curl --insecure '
|
||||
'--resolve codesearch.opendev.org:443:127.0.0.1 '
|
||||
'https://codesearch.opendev.org/robots.txt')
|
||||
assert 'Disallow: /' in cmd.stdout
|
||||
|
Loading…
Reference in New Issue
Block a user