Vorrei usare Jetty come webserver.
Ho modificato il file di configurazione /etc/default/jetty
e impostato:
# change to 0 to allow Jetty start
NO_START=0
# Listen to connections from this network host
# Use 0.0.0.0 as host to accept all connections.
JETTY_HOST=0.0.0.0
Ora posso raggiungere il server web Jetty all'indirizzo http://192.168.1.10:8080
ma vorrei che Jetty ascoltasse sulla porta 80.
Ho provato questa impostazione nello stesso file di configurazione:
# The network port used by Jetty
JETTY_PORT=80
e quindi riavviare Jetty con sudo service jetty restart
ma non funziona.
Come posso cambiare in modo che il server web Jetty sia in ascolto sulla porta 80?