diff --git a/docker/rootfs/nginx.conf b/docker/rootfs/nginx.conf index 891d821..3721da4 100644 --- a/docker/rootfs/nginx.conf +++ b/docker/rootfs/nginx.conf @@ -20,7 +20,7 @@ server { } location / { - try_files $uri $uri/ /index.php; + try_files $uri $uri/ /index.php$is_args$args; } diff --git a/inc/example.config.inc.php b/inc/example.config.inc.php index bada291..c6a0319 100644 --- a/inc/example.config.inc.php +++ b/inc/example.config.inc.php @@ -15,4 +15,7 @@ // get a key from https://www.google.com/recaptcha and fill // it in here define('RECAPTCHA_KEY',''); -define('RECAPTCHA_SECRET',''); \ No newline at end of file +define('RECAPTCHA_SECRET',''); + +// The IP of the server. Needed for the TCP levels +define('IP','127.0.0.1'); \ No newline at end of file