about summary refs log blame commit diff stats
path: root/tools/conf/etc/nginx/sites-enabled/frontpage.conf
blob: 7f7e66a1b5c62305399f7359da7621e7fb8fba24 (plain) (tree)







































                                                                                                   
server {
    listen 8080;
    server_name frontpage.server.ank;

    #access_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_frontpage,nohostname main;
    error_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_frontpage_err,nohostname debug;

    root /srv/www/frontpage;

    index index.html index.php;

    location / {
        index index.html;
        try_files $uri $uri/ index.html index.php$is_args$args;
    }

    location ~ [^/]\.php(/|$) {

        fastcgi_split_path_info ^(.+?\.php)(/.*)$;
        if (!-f $document_root$fastcgi_script_name) {
            return 404;
        }

        # Mitigate https://httpoxy.org/ vulnerabilities
        fastcgi_param HTTP_PROXY "";

        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;

        # include the fastcgi_param setting
        include fastcgi_params;

        # SCRIPT_FILENAME parameter is used for PHP FPM determining
        #  the script name. If it is not set in fastcgi_params file,
        # i.e. /etc/nginx/fastcgi_params or in the parent contexts,
        # please comment off following line
        fastcgi_param REQUEST_METHOD $request_method;
        fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
    }
}