| At line 2 added one line |
| [{TableOfContents }] |
| At line 4 added 14 lines |
| !!ATTENZIONE TOMCAT 6 PROBLEMA ENCODING/CHARSET: |
| {{{ |
| People, Tomcat 6 has disabled the standard servlet behavior by default. |
|
| To make it work you should add |
| -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true to your startup |
| script. If you don't, the server response will not include the |
| encoding bit, even if the browser has provided an Accept-Language |
| header. The symptoms are that loom will lose any accented characters |
| (áéí... you know what I mean). Adding this flag should get it fixed. |
|
| I have updated the docs and the Loom "start tomcat" eclipse config. |
| }}} |
|
| At line 29 added 7 lines |
| ! Avvio : |
| Nel caso di utilizzo di tomcat con il connettore ad apache è meglio |
| #avviare prima tomcat: /etc/init.d/tomcat start |
| #avviare apache: /etc/init.d/apache2 start |
|
| Allo stesso modo per un riavvio di tomcat sarebbe meglio spegnere apache, riavviare tomcat e avviare apache |
|
| At line 83 changed one line |
| #[worker.properties] metterlo in /opt/tomcat/conf |
| #[workers.properties] e metterlo in /opt/tomcat/conf |
| At line 87 changed one line |
| xxx |
| JkWorkersFile "/opt/tomcat/conf/workers.properties" |
| JkLogFile "/opt/tomcat/logs/mod_jk.log" |
| JkLogLevel info |
| JkLogStampFormat "[%a %b %d %H:%M:%S %Y]" |
| At line 116 added 19 lines |
| ! Caricare i VirtualHost creati con [addvirtual] |
| Per indicare ad apache dove prelevare le definizioni dei VirtualHost occorre editare /etc/apache/apache2.conf e |
| %%prettyif |
| {{{ |
| commentare le seguenti |
| #Include /etc/apache2/conf.d/[^.#]* |
| e anche |
| #Include /etc/apache2/sites-enabled/[^.#]* |
|
| aggiungere la seguente |
|
| Include /etc/apache2/conf.d/vhost.d/*.conf |
|
| e anche |
|
| NameVirtualHost qui |
| }}} |
| /% |
|