mirror of
https://github.com/bpetschowitsch/weba.git
synced 2026-06-01 16:39:42 +00:00
34 lines
474 B
Markdown
34 lines
474 B
Markdown
# Nginx Installation on Debian
|
|
|
|
Installation of Nginx on a **Debian-System**.
|
|
|
|
## System update
|
|
System and package update:
|
|
|
|
```bash
|
|
sudo apt update
|
|
sudo apt upgrade -y
|
|
```
|
|
|
|
### Install Nginx
|
|
|
|
```bash
|
|
sudo apt install nginx -y
|
|
```
|
|
|
|
### Verify Nginx status
|
|
|
|
```bash
|
|
sudo systemctl status nginx
|
|
```
|
|
|
|
### Test Nginx
|
|
Testing Nginx via browser: replace *server_ip_address* with your servers IP-Address.
|
|
You have to see **"Welcome to nginx!"**.
|
|
|
|
```
|
|
http://server_ip_address
|
|
```
|
|
|
|
|