Skip to content

Commit e3d7dc2

Browse files
mahmud2011pvalena
authored andcommitted
add nginx
1 parent 6970732 commit e3d7dc2

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Loading

start/sw/web-app/nginx.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: NGINX HTTP Server
3+
subsection: web-app
4+
order: 7
5+
---
6+
7+
# What is NGINX
8+
9+
NGINX is a high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. NGINX is known for its high performance, stability, rich feature set, simple configuration, and low resource consumption. Website: [nginx.org](https://nginx.org/), [nginx.com](https://www.nginx.com/).
10+
11+
## Install NGINX Web Server
12+
13+
```bash
14+
$ sudo dnf install nginx
15+
# Start NGINX when system boots
16+
$ sudo systemctl enable nginx
17+
# Start NGINX
18+
$ sudo systemctl start nginx
19+
# Check NGINX Status
20+
$ sudo systemctl status nginx
21+
```
22+
23+
Now visit [http://localhost/](http://localhost/). You should see NGINX Test Page:
24+
25+
![NGINX Test Page on Fedora](/start/sw/web-app/images/NGINX_Test_Page_on_Fedora.png)

0 commit comments

Comments
 (0)