Hi, I was wondering why it shouldn't be easy to change the port of the web managment gui.
Looking at source
has a fixed port
Why isn't this also configurable via
I would like to propose this change to code:
The port could be defined by
The code also may be used to update
Looking at source
/usr/share/perl5/PVE/Service/pveproxy.pm
the initial code line (73) is:
Code:
my $socket = $self->create_reusable_socket(8006, undef, $family);
has a fixed port
8006
.Why isn't this also configurable via
/etc/default/pveproxy
?I would like to propose this change to code:
Code:
my $socket = $self->create_reusable_socket(defined($proxyconf->{PORT}) ? $proxyconf->{PORT} : 8006, undef, $family);
The port could be defined by
/etc/default/pveproxy
The code also may be used to update
/usr/bin/pvebanner
.