Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cuongndc9/nginx
nginx from zero to hero.
https://github.com/cuongndc9/nginx
103cuong nginx
Last synced: about 2 months ago
JSON representation
nginx from zero to hero.
- Host: GitHub
- URL: https://github.com/cuongndc9/nginx
- Owner: cuongndc9
- Created: 2020-02-24T14:59:18.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T16:13:48.000Z (about 2 months ago)
- Last Synced: 2024-11-15T17:23:22.382Z (about 2 months ago)
- Topics: 103cuong, nginx
- Language: JavaScript
- Homepage:
- Size: 565 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nginx
Ghi chú học Nginx năm 2024.# Nginx UI
[Nginx UI](https://nginxui.com/) : Open source tools to manage nginx### các lệnh cần thiết để quản lý
- kiểm tra cú pháp file cấu hình có bị lỗi hay không
```sh
$ sudo nginx -t
```
- reload lại file cấu hình```sh
$ sudo nginx -s reload
```- mở file log
```sh
$ sudo nginx -s reopen
```### danh sách file và thư mục quan trọng
- `/etc/nginx/nginx.conf`: file config chính
- `/etc/nginx/conf.d`: thư mục chưa các file config của riêng bạn
- `/etc/nginx/sites-available`: thư mục chưa các file config VirtualHost, cho phép chúng ta cấu hình riêng biệt cho từng website
- `/etc/nginx/sites-available/default`: file config Virtual Hosts mặc định### documents
- [installation](https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04)
- [Nginx Tutorial](https://www.devdungeon.com/content/nginx-tutorial)
- [Nginx Tutorial Step by Step with Examples](https://knockdata.github.io/Nginx-Tutorial-Step-by-Step-with-Examples/)
- [nginx from vinasupport.com](https://vinasupport.com/web-server/nginx/)
- [7 Nginx Rewrite Rule Examples with Reg-Ex and Flags](https://www.thegeekstuff.com/2017/08/nginx-rewrite-examples/)
- [Fordward Proxy và Reverse Proxy là gì và chúng khác nhau như thế nào?](https://viblo.asia/p/fordward-proxy-va-reverse-proxy-la-gi-va-chung-khac-nhau-nhu-the-nao-924lJpobKPM)