Me gustaría usar Jetty como servidor web.
Edité el archivo de configuración en /etc/default/jetty
y configuré:
# 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
Ahora puedo acceder al servidor web Jetty en http://192.168.1.10:8080
pero me gustaría que Jetty escuchara en el puerto 80.
He intentado esta configuración en el mismo archivo de configuración:
# The network port used by Jetty
JETTY_PORT=80
y luego reinicie Jetty con sudo service jetty restart
pero no funciona.
¿Cómo puedo cambiar para que el servidor web Jetty escuche en el puerto 80?