You are not logged in.
Pages: 1
Hello everyone.
Faced with the need to change the port of inventory, how is it best to implement?
Offline
Hi badkempachi,
what do you mean by changing the inventory port ? Can you be more accurate ?
GLPI-Agent developer from Teclib' and GLPI-Network team
Previously FusionInventory-Agent maintainer
Offline
Hi badkempachi,
what do you mean by changing the inventory port ? Can you be more accurate ?
Hi gbougard,
I want to change the standard port 443 to which the inventory files are sent. Port 443 is also used to access the web panel. Is it possible to implement access to the web panel separately from the inventory? This is necessary to reduce access to the web panel.
Offline
You have some httpd server (Apache, nginx or so) configuration to do. This part is up to you.
On the agent, you'll just have to configure the server url to include the port if it is not standard, like in: http://myglpiserver:8088/glpi
GLPI-Agent developer from Teclib' and GLPI-Network team
Previously FusionInventory-Agent maintainer
Offline
You have some httpd server (Apache, nginx or so) configuration to do. This part is up to you.
On the agent, you'll just have to configure the server url to include the port if it is not standard, like in: http://myglpiserver:8088/glpi
It turned out to be implemented. But there remains one problem that has not been solved at the moment. I now have a separate port for sending inventory files, but I want to disable the user's ability to access the glpi website. What is the best way to do this?
P.s. i am use apache
Offline
Using apache directive https://httpd.apache.org/docs/2.4/howto/access.html ?
Or simply by not giving username and password to them??
Offline
Using apache directive httpd.apache_org/docs/2.4/howto/access.html ?
Or simply by not giving username and password to them??
I found a simple option for myself in the form of “front” blocking.
<Directory> /var/www/html/glpi/>
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
<Files /var/www/html/glpi/marketplace/glpiinventory/index.php>
Order Allow,Deny
Allow from all
</Files>
<Directory "/var/www/html/glpi/marketplace/glpiinventory">
Allow from all
</Directory>
Regarding the fact that not to give a username and password, yes, this is a solution of course.
But in my case, the need to block access to the web panel is due to the fact that there is a PC in the dmz network.
Last edited by badkempachi (2022-06-14 17:30:28)
Offline
Pages: 1