server {
    listen #XIVO_PROVD_HTTP_PORT# default_server;
    listen [::]:#XIVO_PROVD_HTTP_PORT# default_server;
    server_name _;

    access_log /var/log/nginx/wazo-provd.access.log main;
    error_log /var/log/nginx/wazo-provd.error.log;
    root /var/www/html;

    location ^~ / {
        proxy_pass http://127.0.0.1:18667/;

        proxy_set_header    Host                $http_host;
        proxy_set_header    X-Script-Name       /;
        proxy_set_header    X-Forwarded-For     $proxy_add_x_forwarded_for;
        proxy_set_header    X-Forwarded-Proto   $scheme;
    }
}
