Hi,
To start Seaside under Comanche, I do : WAKom startOn: 8080 for example. I tried to start it on the port 80, but it didn't work (without any error message). So I stopped Apache, and I tried again, same thing. Does someone know how to do this ? Nicolas Petton -- ___ .:! DEBIAN GNU/Linux !:. / _ \ | / | The universal OS | \__/ \ ------------------------------------- Ma clé GPG est disponible ici : http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xE788C34D _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside signature.asc (196 bytes) Download Attachment |
Ports below 1024 require root rights.
2007/4/22, Nicolas Petton <[hidden email]>: > Hi, > > To start Seaside under Comanche, I do : WAKom startOn: 8080 for example. > I tried to start it on the port 80, but it didn't work (without any error > message). So I stopped Apache, and I tried again, same thing. > > Does someone know how to do this ? > > Nicolas Petton > -- > ___ > .:! DEBIAN GNU/Linux !:. / _ \ > | / | > The universal OS | \__/ > \ > ------------------------------------- > Ma clé GPG est disponible ici : > http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xE788C34D > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > > iD8DBQFGK0UpgxoTqOeIw00RAi/VAJ9WYbWQMA2bzqSQQAiWwwu59BRFkACfTIu8 > DYko5XlcKXDbi0QQuBWGBmk= > =OeMC > -----END PGP SIGNATURE----- > > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
If you are running squeak from linux, you can let Kom/Seaside run on
port 9090 for example and use iptable to redirect every connection from 80 to 9090 (both ways) like that : iptables -t nat -A PREROUTING -p tcp --dport 80 -i eth0 -j REDIRECT --to-port 9090 Florian Philippe Marschall wrote: > Ports below 1024 require root rights. > > 2007/4/22, Nicolas Petton <[hidden email]>: >> Hi, >> >> To start Seaside under Comanche, I do : WAKom startOn: 8080 for example. >> I tried to start it on the port 80, but it didn't work (without any error >> message). So I stopped Apache, and I tried again, same thing. >> >> Does someone know how to do this ? >> >> Nicolas Petton >> -- >> ___ >> .:! DEBIAN GNU/Linux !:. / _ \ >> | / | >> The universal OS | \__/ >> \ >> ------------------------------------- >> Ma clé GPG est disponible ici : >> http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xE788C34D >> >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.6 (GNU/Linux) >> >> iD8DBQFGK0UpgxoTqOeIw00RAi/VAJ9WYbWQMA2bzqSQQAiWwwu59BRFkACfTIu8 >> DYko5XlcKXDbi0QQuBWGBmk= >> =OeMC >> -----END PGP SIGNATURE----- >> >> _______________________________________________ >> Seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> >> > > ------------------------------------------------------------------------ > > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |