https://caddyserver.com/ : Caddy is the HTTP/2 web server with automatic HTTPS
https://jenkins.io/ : The leading open source automation server, Jenkins provides hundreds of plugins to support building, deploying and automating any project.
I have installed Jenkins in Ubuntu.
If you want to install in Ubuntu please follow the tutorial below.
http://www.fullstacktechnos.com/2018/03/how-to-install-jenkins-in-ubuntu.html
Install Caddy
1)
praja@ip-****:~/jenkins$ wget https://github.com/mholt/caddy/releases/download/v0.10.10/caddy_v0.10.10_linux_amd64.tar.gz
Saving to: ‘caddy_v0.10.10_linux_amd64.tar.gz’
caddy_v0.10.10_linux_amd64.tar.gz 100%[===================================================================>] 5.36M 1.95MB/s in 2.7s
2017-12-28 09:01:36 (1.95 MB/s) - ‘caddy_v0.10.10_linux_amd64.tar.gz’ saved [5617625/5617625]
2)
sudo cp caddy /usr/local/bin/
praja@ip-****:~/jenkins$ ls -lart /usr/local/bin/
total 17168
drwxr-xr-x 10 root root 4096 Nov 21 10:30 ..
drwxr-xr-x 2 root root 4096 Dec 28 09:07 .
-rwxr-xr-x 1 root root 17568553 Dec 28 09:07 caddy
3)
Once the installation is complete, please add the cap_net_bind_service capability to the Caddy binary. This capability will allow the Caddy executable to bind to a port less than 1024.
praja@ip-****:~/jenkins$ sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/caddy
4)
Create the directories where you will store the Caddy configuration file Caddyfile and SSL certificates.
The term “Caddyfile” is a plaintext configuration file used to configure how Caddy works.
This configuration file is very similar in purpose to httpd.conf in Apache or nginx.conf in Nginx.
Run the following commands:
sudo mkdir /etc/caddy
sudo chown -R root:www-data /etc/caddy
sudo mkdir /etc/ssl/caddy
sudo chown -R www-data:root /etc/ssl/caddy
sudo chmod 0770 /etc/ssl/caddy
sudo touch /etc/caddy/Caddyfile
sudo mkdir /var/www
sudo chown www-data: /var/www
5)
caddy file
This will proxy all of the root traffic from port 80 to port 8080 where our Jenkins application is running – while passing the host information that most backend applications would expect when we specify transparent.
praja@ip-****:/etc/caddy$ cat Caddyfile
jenkins.fullstacktechnos.com {
gzip
proxy / :8080 {
transparent
}
}
sudo chown www-data:www-data Caddyfile
sudo chmod 444 Caddyfile
praja@ip-****:/etc/caddy$ ls -lart Caddyfile
-r--r--r-- 1 www-data www-data 72 Dec 28 09:31 Caddyfile
** Change the hostname as per your hosting domain or use localhost if you are testing locally.
6)
Caddy Service File
Run the following commands:
praja@ip-****:~/jenkins/init/linux-systemd$ pwd
/home/praja/jenkins/init/linux-systemd
praja@ip-****:~/jenkins/init/linux-systemd$ ls
caddy.service README.md
praja@ip-****:~/jenkins/init/linux-systemd$ sudo cp caddy.service /etc/systemd/system/
praja@ip-****:~/jenkins/init/linux-systemd$ sudo chown root:root /etc/systemd/system/caddy.service
praja@ip-****:~/jenkins/init/linux-systemd$ sudo chmod 744 /etc/systemd/system/caddy.service
praja@ip-****:~/jenkins/init/linux-systemd$ sudo systemctl daemon-reload
praja@ip-****:/etc/systemd/system$ sudo systemctl enable caddy.service
Created symlink from /etc/systemd/system/multi-user.target.wants/caddy.service to /etc/systemd/system/caddy.service.
praja@ip-****:/etc/systemd/system$ sudo systemctl status caddy.service
● caddy.service - Caddy HTTP/2 web server
Loaded: loaded (/etc/systemd/system/caddy.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2017-12-28 09:50:04 UTC; 8s ago
Docs: https://caddyserver.com/docs
Main PID: 18390 (caddy)
Tasks: 7
Memory: 9.5M
CPU: 163ms
CGroup: /system.slice/caddy.service
└─18390 /usr/local/bin/caddy -log stdout -agree=true -conf=/etc/caddy/Caddyfile -root=/var/tmp
Dec 28 09:50:04 ip-**** caddy[18390]: Your sites will be served over HTTPS automatically using Let's Encrypt.
...
** Now visit jenkins.<your-domain>.com. Jenkins will be served over https.
https://jenkins.io/ : The leading open source automation server, Jenkins provides hundreds of plugins to support building, deploying and automating any project.
I have installed Jenkins in Ubuntu.
If you want to install in Ubuntu please follow the tutorial below.
http://www.fullstacktechnos.com/2018/03/how-to-install-jenkins-in-ubuntu.html
Install Caddy
1)
praja@ip-****:~/jenkins$ wget https://github.com/mholt/caddy/releases/download/v0.10.10/caddy_v0.10.10_linux_amd64.tar.gz
Saving to: ‘caddy_v0.10.10_linux_amd64.tar.gz’
caddy_v0.10.10_linux_amd64.tar.gz 100%[===================================================================>] 5.36M 1.95MB/s in 2.7s
2017-12-28 09:01:36 (1.95 MB/s) - ‘caddy_v0.10.10_linux_amd64.tar.gz’ saved [5617625/5617625]
2)
sudo cp caddy /usr/local/bin/
praja@ip-****:~/jenkins$ ls -lart /usr/local/bin/
total 17168
drwxr-xr-x 10 root root 4096 Nov 21 10:30 ..
drwxr-xr-x 2 root root 4096 Dec 28 09:07 .
-rwxr-xr-x 1 root root 17568553 Dec 28 09:07 caddy
3)
Once the installation is complete, please add the cap_net_bind_service capability to the Caddy binary. This capability will allow the Caddy executable to bind to a port less than 1024.
praja@ip-****:~/jenkins$ sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/caddy
4)
Create the directories where you will store the Caddy configuration file Caddyfile and SSL certificates.
The term “Caddyfile” is a plaintext configuration file used to configure how Caddy works.
This configuration file is very similar in purpose to httpd.conf in Apache or nginx.conf in Nginx.
Run the following commands:
sudo mkdir /etc/caddy
sudo chown -R root:www-data /etc/caddy
sudo mkdir /etc/ssl/caddy
sudo chown -R www-data:root /etc/ssl/caddy
sudo chmod 0770 /etc/ssl/caddy
sudo touch /etc/caddy/Caddyfile
sudo mkdir /var/www
sudo chown www-data: /var/www
5)
caddy file
This will proxy all of the root traffic from port 80 to port 8080 where our Jenkins application is running – while passing the host information that most backend applications would expect when we specify transparent.
praja@ip-****:/etc/caddy$ cat Caddyfile
jenkins.fullstacktechnos.com {
gzip
proxy / :8080 {
transparent
}
}
sudo chown www-data:www-data Caddyfile
sudo chmod 444 Caddyfile
praja@ip-****:/etc/caddy$ ls -lart Caddyfile
-r--r--r-- 1 www-data www-data 72 Dec 28 09:31 Caddyfile
** Change the hostname as per your hosting domain or use localhost if you are testing locally.
6)
Caddy Service File
Run the following commands:
praja@ip-****:~/jenkins/init/linux-systemd$ pwd
/home/praja/jenkins/init/linux-systemd
praja@ip-****:~/jenkins/init/linux-systemd$ ls
caddy.service README.md
praja@ip-****:~/jenkins/init/linux-systemd$ sudo cp caddy.service /etc/systemd/system/
praja@ip-****:~/jenkins/init/linux-systemd$ sudo chown root:root /etc/systemd/system/caddy.service
praja@ip-****:~/jenkins/init/linux-systemd$ sudo chmod 744 /etc/systemd/system/caddy.service
praja@ip-****:~/jenkins/init/linux-systemd$ sudo systemctl daemon-reload
praja@ip-****:/etc/systemd/system$ sudo systemctl enable caddy.service
Created symlink from /etc/systemd/system/multi-user.target.wants/caddy.service to /etc/systemd/system/caddy.service.
praja@ip-****:/etc/systemd/system$ sudo systemctl status caddy.service
● caddy.service - Caddy HTTP/2 web server
Loaded: loaded (/etc/systemd/system/caddy.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2017-12-28 09:50:04 UTC; 8s ago
Docs: https://caddyserver.com/docs
Main PID: 18390 (caddy)
Tasks: 7
Memory: 9.5M
CPU: 163ms
CGroup: /system.slice/caddy.service
└─18390 /usr/local/bin/caddy -log stdout -agree=true -conf=/etc/caddy/Caddyfile -root=/var/tmp
Dec 28 09:50:04 ip-**** caddy[18390]: Your sites will be served over HTTPS automatically using Let's Encrypt.
...
** Now visit jenkins.<your-domain>.com. Jenkins will be served over https.
I am feeling happy to read this. You gave nice info to me. Please update more.
ReplyDeleteHibernate Training in Chennai
Hibernate course in Chennai
Hibernate Training in Adyar
Spring Training in Chennai
spring hibernate training institutes in chennai
Struts Training in Chennai
Wordpress Training in Chennai
Big data is a term that describes the large volume of data – both structured and unstructured – that inundates a business on a day-to-day basis. big data projects for students But it’s not the amount of data that’s important.Project Center in Chennai
DeleteSpring Framework has already made serious inroads as an integrated technology stack for building user-facing applications. Corporate TRaining Spring Framework the authors explore the idea of using Java in Big Data platforms.
Spring Training in Chennai
The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training
Awesome blog with great piece of information. Very well written blog with crisp and neat content. Keep sharing more such blogs.
ReplyDeleteBlue Prism Training
Blue Prism Training Institute in Chennai
Machine Learning course in Chennai
Data Science Course in Chennai
RPA Training in Chennai
UiPath Training in Chennai
DevOps Training in Chennai
Blue Prism Training in Anna Nagar
I have to appreciate you for your great work which you had done in your blog.i want you to add more like this.
ReplyDeleteJAVA Training in Chennai
Best JAVA Training institute in Chennai
SEO training in chennai
Python Training in Chennai
Selenium Training in Chennai
Big data training in chennai
Selenium Training in Chennai
Great, this article is quite awesome and I have bookmarked this page for my future reference.
ReplyDeleteTally course in Chennai
Tally classes in Chennai
Tally Training in Chennai
ccna course in Chennai
PHP Training in Chennai
Salesforce Training in Chennai
Web Designing Training in Chennai
Tally Course in Ambattur
Tally Course in Perambur
Tally Course in Avadi
best php training in chennai
ReplyDeletebest php developer institution chennai
best php training with placement in chennai
best php training center in chennai
best php course in chennai
I have been reading for the past two days about your blogs and topics, still on fetching! Wondering about your words on each line was massively effective.
ReplyDeletebest appium training in chennai
appium online training
appium training centres in chennai
appium training institutes in chennai
appium training institutes for appuim in chennai
appium training content
ReplyDeleteYou write this post very carefully I think, which is easily understandable to me. Not only this, but another post is also good. As a newbie, this info is really helpful for me. Thanks to you.
Tally ERP 9 Training
tally classes
Tally Training institute in Chennai
Tally course in Chennai
ReplyDeleteThis content of information has
helped me a lot. It is very well explained and easy to understand.
seo training classes
seo training course
seo training institute in chennai
seo training institutes
seo courses in chennai
seo institutes in chennai
seo classes in chennai
seo training center in chennai
Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us and I never get bored while reading your article because, they are becomes a more and more interesting from the starting lines until the end. good page
ReplyDeleteAi & Artificial Intelligence Course in Chennai
PHP Training in Chennai
Ethical Hacking Course in Chennai Blue Prism Training in Chennai
UiPath Training in Chennai
Vray 6.00.05 Crack is a commercial plug-in for third-party developers' 3D computer graphics software programs.VRay Crack
ReplyDelete