vhost.conf.j2 - ansible-roles - A collection of ansible roles I have created over the years.
 (HTM) git clone git://jay.scot/ansible-roles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       vhost.conf.j2 (355B)
       ---
            1 server {
            2     listen 80;
            3     server_name _ {{ searx_server_name }};
            4     root {{ searx_install_path}}/searx;
            5 
            6     server_tokens off;
            7     access_log {{ searx_access_log }};
            8     error_log  {{ searx_error_log }};
            9 
           10     location /static {
           11     }
           12 
           13     location / {
           14             include uwsgi_params;
           15             uwsgi_pass unix:/run/uwsgi/app/searx/socket;
           16     }
           17 }