Skip to content
Snippets Groups Projects
webmail.j2 670 B
{{ ansible_header | comment }}
server {
        listen {{ glob_horde.admin_dest_hostname }}:80;
        listen {{ loc_horde.ipv6 }}:80;
        server_name {{ glob_horde.dest_hostname }} {{ glob_horde.admin_dest_hostname }};

        root /usr/share/;
        location / {
            return 302 {{ glob_horde.redirection }};
        }
        location /horde {
                try_files $uri $uri/ /horde/rampage.php?$args;
                index index.php index.htm index.html;
        }
        include "snippets/php.conf";

        set_real_ip_from {{ glob_horde.zone_ipv4 }};
        set_real_ip_from {{ glob_horde.zone_ipv6 }};
        real_ip_header P-Real-Ip;
}