No description
| defaults | ||
| meta | ||
| tasks | ||
| .gitignore | ||
| README.md | ||
ansible-roles-searxng
This role deploys searxng search engine proxy
- https://docs.trysearxng.com/production/containers/docker
- https://github.com/searxng/searxng-docker
- https://docs.openwebui.com/tutorials/integrations/web_search/
Task Configuration
- name: Setup searxng
hosts: somehost
become: true
roles:
- role: searxng
- role: firewalld
firewalld_add:
- name: public
ports:
- 8002/tcp
Deployment and Removal
systemctl --user stop container-searxng.service
Deploy
ansible-playbook -i hosts site.yml --tags=firewalld,searxng --limit=somehost
Remove
ansible-playbook -i hosts site.yml --tags=firewalld,searxng --extra-vars "container_state=absent firewall_action=remove" --limit=somehost