Created
February 29, 2012 06:30
-
-
Save daneko/1938544 to your computer and use it in GitHub Desktop.
cloudcore CentOS5.7にjenkins構築
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/nginx/conf.d/jenkins.conf サンプル | |
server { | |
listen 80; | |
server_name jenkins.3a3k.info; | |
# document root | |
location / { | |
proxy_pass http://localhost:8080; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://d.hatena.ne.jp/sardine/20110602 | |
ここみて | |
・Java | |
・Jenkins | |
を構築 | |
http://hoge:8080 で表示されることを確認 | |
http://oblog.objectclub.jp/nginxweb-5 | |
nginxにてポートを転送 | |
→confは下記 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment