Miha Petkovsek
Miha Petkovsek
Ok, but why running 2 separate webservers on same host? Anyhow, in this case I guess you only need to proxy /phpipam/: nginx.conf: ``` location /phpipam/ { proxy_pass http://10.191.37.4:82/; }...
I think this is missing in nginx: ``` proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; ``` Remove changes you made in index.php and add this to your nginx config.
Hm... Maybe this ? ``` proxy_set_header X-Forwarded-Host $host:$server_port; proxy_set_header Host $host:$server_port; ```
Hi, sorry don't use windows so cannot replicate. Can you add var_dump right after function ping_verify_path and send output ? ```php private function ping_verify_path ($path) { clearstatcache(); var_dump($this->os_type); var_dump($path); ......
Hi, if you added any host to main /24 network it will treat all potential smaller subnets as unavailable. eg: 10.10.10.0/24 has host 10.10.10.1 - 10.10.10.0/25 unavailable - 10.10.10.128/25 available.
There are host entries in your /24 subnet. When phpipam searches for available prefix inside this subnet (e.g. searching for /26) it splits /24 into 6 /26 subnets and checks...
I am sorry I dont follow or we dont understand each other. This is how phpipam gui module works that searches for available subnets. If you have for example: 10.10.10.0/24...
Ok I understand now what you meant :)
Hi, this is in roadmap for 1.4 release.
Something to start on. Other option would be to simply permit numeric+space+numbers of various length which should permit all postcodes I guess...