Nginx配置location、LNMP架构、部署BBS项目
2022/1/6 7:07:47
本文主要是介绍Nginx配置location、LNMP架构、部署BBS项目,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、配置location
-
Nginx配置文件中的location部分主要用来对于传入的URL进行匹配到特定的location,并从这个location中定义的目录下查找请求的文件。location部分支持正则。
使用Nginx Location可以控制访问网站的路径, 但一个server可以有多个location配置, 多个location的优先级该如何区分。
1、location匹配符号
匹配符 | 匹配规则 | 优先级 |
---|---|---|
= | 精确匹配 | 1 |
^~ | 以某个字符串开头 | 2 |
~ | 区分大小写的正则匹配 | 3 |
~* | 不区分大小写的正则匹配 | 3 |
/ | 通用匹配,任何请求都会匹配到 | 4 |
1.1、location中的URL匹配优先级
location支持各种匹配规则,在多个匹配规则下,Nginx对location的处理是有优先级的。
location中的优先级规则为(从上到下优先级依次降低):
-
等号类型(=),该类型为精确匹配,一旦匹配成功则不再查找其他匹配项
-
前缀普通匹配(^~),不支持正则表达式;如果有多个location都能匹配的话,优先匹配表达式最长的location
-
正则表达式匹配,包括(区分大小写)和*(不区分大小写);正则匹配以从上到下的顺序为优先级,一旦匹配一个则不再继续匹配
-
常规字符串匹配,如果有多个location都能匹配的话,优先匹配表达式最长的location
一个特殊的location:
location = / {`` ``root ``/test``;``}
此时必须使用http://192.168.0.110/才能匹配到该条规则而不是使用http://192.168.0.110,等号类型要求精确匹配才能命中。
server { listen 80; server_name _; location ~* /python { default_type text/html; return 200 "Location ~*"; } location ~ /Python { default_type text/html; return 200 "Location ~"; } location ^~ /python { default_type text/html; return 200 "Location ^~"; } location = /python { default_type text/html; return 200 "Location ="; } }
二、LNMP架构
LNMP是一套技术的组合,L=Linux、N=Nginx、M~=MySQL、P~=Python 首先Nginx服务是不能处理动态请求,那么当用户发起动态请求时, Nginx又是如何进行处理的。 1.静态请求:请求的内容是静态文件就是静态请求 1)静态文件:文件上传到服务器,永远不会改变的文件就是静态文件 2)html就是一个标准的静态文件 2.动态请求:请求的内容是动态的就是动态请求 1)不是真实存在服务器上的内容,是通过数据库或者其他服务拼凑成的数据 当用户发起http请求,请求会被Nginx处理,如果是静态资源请求Nginx则直接返回,如果是动态请求Nginx则通过uwsgi协议转交给后端的Python程序处理
1、uwsgi服务部署
1、创建用户 [root@web01 opt]# groupadd django -g 888 [root@web01 opt]# useradd django -u 888 -g 888 -r -M -s /bin/sh 2、安装依赖软件 [root@web01 opt]# yum install python3 libxml* python-devel gcc* pcre-devel openssl-devel python3-devel -y 3、安装Django和uwsgi [root@web01 opt]# pip3 install django [root@web01 opt]# pip3 install uwsgi 4、创建项目 [root@web01 opt]# cd /opt [root@web01 opt]# django-admin startproject linux [root@web01 opt]# cd linux [root@web01 opt]# django-admin startapp app01 [root@web01 linux]# vim linux/settings.py ALLOWED_HOSTS = ['*'] DATABASES = {} # 启动测试 [root@web01 linux]# python3 manage.py runserver 0.0.0.0:8000 5、编辑项目配置文件 [root@localhost ~]# cat /opt/linux/myweb_uwsgi.ini [uwsgi] # 端口号 socket = :8000 # 指定项目的目录 chdir = /opt/linux # wsgi文件路径 wsgi-file = linux/wsgi.py # 模块wsgi路径 module = linux.wsgi # 是否开启master进程 master = true # 工作进程的最大数目 processes = 4 # 结束后是否清理文件 vacuum = true 6、启动uwsgi [root@web01 linux]# uwsgi -d --ini myweb_uwsgi.ini --uid 666 -d : 以守护进程方式运行 --ini : 指定配置文件路径 --uid : 指定uid TCP 服务 7、编辑Nginx配置文件 [root@localhost ~]# cat /etc/nginx/conf.d/python.conf server { listen 80; server_name py.test.com; location / { include uwsgi_params; uwsgi_pass 127.0.0.1:8000; uwsgi_read_timeout 2; uwsgi_param UWSGI_SCRIPT linux.wsgi; uwsgi_param UWSGI_CHDIR /opt/linux; index index.html index.htm; client_max_body_size 35m; } } 8、重启Nginx配置 systemctl restart nginx
-
网址测试http://192.168.15.7:8000/ :测试成功
-
网址测试http://py.test.com/ :测试成功
三、部署BBS项目
1、部署数据库 [root@db01 ~]# yum install mariadb* -y 2、启动数据库 [root@db01 ~]# systemctl start mariadb 3、远程连接MySQL数据 MariaDB [(none)]> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> CREATE DATABASE `bbs` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; Query OK, 1 row affected (0.00 sec) 4、部署BBS 4.1、上传代码 [root@db01 ~]# unzip bbs.zip [root@db01 ~]# mv bbs /opt/ 4.2、数据库迁移 [root@web01 migrations]# pwd /opt/bbs/app01/migrations [root@web01 migrations]# rm -rf 00* [root@web01 migrations]# rm -rf __pycache__/ [root@web01 migrations]# cd /opt/bbs/ [root@web01 bbs]# pwd /opt/bbs # 修改Django版本 [root@web01 bbs]# pip3 uninstall django [root@web01 bbs]# pip3 install django==1.11 # 安装MySQL数据库插件 [root@web01 bbs]# pip3 install pymysql # 修改数据连接 [root@web01 bbs]# vim bbs/settings.py 没弄 ALLOWED_HOSTS = ['*'] DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'bbs', 'USER': 'root', 'PASSWORD': '123456', 'HOST': '172.16.1.61', 'PORT': 3306, 'CHARSET': 'utf8' } } # 创建数据库迁移文件 [root@web01 bbs]# python3 manage.py makemigrations # 数据库迁移 [root@web01 bbs]# python3 manage.py migrate 4.3、配置UWSGI [root@localhost ~]# cat /opt/bbs/myweb_uwsgi.ini [uwsgi] # 端口号 socket = :8002 # 指定项目的目录 chdir = /opt/bbs # wsgi文件路径 wsgi-file = bbs/wsgi.py # 模块wsgi路径 module = bbs.wsgi # 是否开启master进程 master = true # 工作进程的最大数目 processes = 4 # 结束后是否清理文件 vacuum = true [root@web01 bbs]# uwsgi -d --ini myweb_uwsgi.ini --uid 666 4.4、配置Nginx [root@localhost ~]# cat /etc/nginx/conf.d/python.conf server { listen 80; server_name bbs.test.com; location / { include uwsgi_params; uwsgi_pass 127.0.0.1:8002; uwsgi_read_timeout 2; uwsgi_param UWSGI_SCRIPT bbs.wsgi; uwsgi_param UWSGI_CHDIR /opt/bbs; index index.html index.htm; client_max_body_size 35m; } } [root@web01 bbs]# systemctl restart nginx 4.5、测试访问BBS
-
部署BBS 测试成功:http://bbs.test.com/
ps:版本二 百度搜的
项目架构为:LNM+Python+Django+uwsgi+Redis (L:linux,N:nginx,M:mysql) 将bbs项目压缩上传到: /opt 在shell中直接拖拽 1.1将sql文件导出,传到opt(选择结构和数据) 1.2不要用数字与大写开头的库名,尽量使用小写(字符集选用utf8mb4) source /opt/bbs/bbs.sql 解压bbs: unzip bbs.zip 同理导出数据库的文件.不需要压缩,直接上传 2.配置Nginx [root@web01 BBS]# vim /etc/nginx/conf.d/py.conf server { listen 80; server_name 10.0.0.100; client_max_body_size 100M; location /static { alias /opt/BBS/static/; } location /media { alias /opt/BBS/media; } location / { index index.html; include uwsgi_params; uwsgi_pass 127.0.0.1:9090; uwsgi_param UWSGI_SCRIPT BBS.wsgi; uwsgi_param UWSGI_CHDIR /opt/BBS; } } 2.1关闭所有已有的uwsgi kill -9 `ps -ef |grep uwsgi|awk {'print $2'}` 2.2配置文件 [root@web01 BBS]# vim uwsgi.ini [uwsgi] socket = 127.0.0.1:9090 master = true workers = 2 reload-mercy = 10 vacuum = true max-requests = 1000 limit-as = 512 buffer-size = 30000 2.3重启uwsgi uwsgi --ini uwsgi.ini & 2.在浏览器中输入10.0.0.100即可看到bbs项目首页
这篇关于Nginx配置location、LNMP架构、部署BBS项目的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享