linuxのnginxとtomcatドメイン名バインド
ドメイン名バインド:www.chipmunk.com
ip:99.100.99.100
プロジェクトプロジェクト:chipmunk(linuxのルートディレクトリ/project/chipmunk)
linux
nginxのnginx.conf
server {
listen 80;
server_name localhost;
location / {
#root html;
#index index.html index.htm;
proxy_pass http://127.0.0.1:8080/;
}
}
tomcatのserver.xml