update from sparkleup
This commit is contained in:
parent
5f69b36f82
commit
b66e685de5
|
@ -8,23 +8,14 @@ You can install Jenkins later in this tutorial, if you don't have it installed y
|
|||
|
||||
## Prerequisites
|
||||
|
||||
This guide assumes that you are using Ubuntu 22.04. Before you begin, you should have a non-**root** user account with `sudo` privileges set up on your system. You can learn how to do this by following the [Ubuntu 22.04 initial server setup tutorial](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-22-04). You will also need the Nginx server installed. You can learn how to do this with the [How To Install Nginx on Ubuntu 22.04 tutorial](https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-22-04).
|
||||
This guide assumes that you are using Ubuntu 22.04. Before you begin, you should have a non-**root** user account with `sudo` privileges set up on your system. You can learn how to do this by following the [Ubuntu 22.04 initial server setup tutorial](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-22-04). You will also need the Nginx server installed and hosting your domain. You can learn how to do this with the [How To Install Nginx on Ubuntu 22.04 tutorial](https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-22-04).
|
||||
|
||||
Additionally, having your Jenkins instance secured by SSL is very important. If is visible on the internet, you can secure it with Let's Encrypt. You can learn how to do this with the [How to Secure Nginx with Let's Encrypt on Ubuntu 22.04 tutorial](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-22-04).
|
||||
|
||||
## Step 1 — Configure Nginx
|
||||
|
||||
Nginx has become a favorite web server for its speed and flexibility in recent years, which makes it an idea choice for our application.
|
||||
|
||||
### Install Nginx
|
||||
|
||||
Update your package lists and install Nginx:
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install nginx
|
||||
|
||||
It's not crucial, but you may want to check Nginx's version in case you need to do any troubleshooting down the road. Newer versions of Nginx provide a few more features as well.
|
||||
|
||||
nginx -v
|
||||
|
||||
|
||||
### Get a Certificate
|
||||
|
||||
|
|
Loading…
Reference in New Issue