PDA

View Full Version : Qual è la giusta implementazione per un'app, un admin app e la pagina def di Tomcat?


elect
21-07-2011, 17:33
Siccome sono da poco alle prese con Apache/Tomcat, chiedo a voi quale sarebbe la giusta (e sicura) implementazione per ciò che ho in mente

Vorrei avere

- la mia app su http://x.x.x.x/
- l'admin app on http://x.x.x.x:x
- e la default Tomcat page su http://x.x.x.x/tomcat

/etc/apache2/sites-available/default:



<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /usr/share/tomcat5.5/webapps/MyApp/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /usr/share/tomcat5.5/webapps/MyApp/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>

ErrorLog /var/log/apache2/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog /var/log/apache2/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

</VirtualHost>


In questo modo ho l'app su http://x.x.x.x/, ma non son sicuro se questo sia il metodo corretto

Ps: l'admin app è a http://x.x.x.x:8180/admin e tomcat a http://x.x.x.x:8180