[ixpmanager] Configuring nginx for IXP Manager
Pete Ashdown
pashdown at xmission.com
Tue Nov 25 17:56:42 GMT 2025
I recently upgraded my IXP Manager from Ubuntu 20.04 to Debian 13, and from 6.4.2 to 7.0.1. The IXP Manager software upgrade went smooth as silk. Great work guys!
In addition, I finally nailed down the issue with graphing and nginx. Prior to this, tapping the “day”, “month”, or “year” buttons on the Admin page would always show the same weekly graph. The key is to add “?$query_string” to the try files line. Here is the relevant config:
root /srv/ixpmanager/public;
index index.php;
location / {
# this is the line that nees to have ?$query_string after index.php
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param HTTP_HOST $host;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/var/run/php/php-fpm.sock;
}
More information about the ixpmanager
mailing list