一、nginx部署 1.epel源安装 [root@web01 ~]# yum install -y nginx 2.官方源安装 1.配置官方源[root@web02 ~]# vim /etc/yum.repos.d/nginx.repo [nginx-stable]name=nginx stabl ...
分类:
其他好文 时间:
2020-08-31 13:18:04
阅读次数:
48
原文地址:https://www.cnblogs.com/mao2080/p/9340026.html 1、问题描述 给前端同事部署了web项目之后,访问发现除了index.html可以访问,其他的路径使用了“伪静态”。比如访问:http://localhost:8081/user/login,访问 ...
分类:
其他好文 时间:
2020-07-18 15:56:24
阅读次数:
73
一.nginx介紹與安裝 1.Nginx是一款基於異步框架的輕量級/高性能的web服務器/反向代理服務器/緩存服務器/電子郵件代理服務器 優點: 高并發量 簡單穩定 低成本 2.nginx應用場景 3.apt-get安裝:apt-get install nginx -y 服務狀態:systemctl ...
分类:
其他好文 时间:
2020-07-04 11:40:07
阅读次数:
72
location / { root /Users/heyang/Desktop/web/static; index index.html index.htm; try_files $uri $uri/ /index.html; } ...
分类:
其他好文 时间:
2020-06-30 17:12:37
阅读次数:
64
这是我在VMware Workstation Pro安装linux docker的一些操作步骤及一些问题记录。 1.在linux上直接运行.net core项目: 今天安装了nginx 部署.net core有前提条件的 需要ip 通过ip addr查看 如果没有的话需要设置下 设置好了需要重启网络 ...
分类:
系统相关 时间:
2020-06-28 13:14:23
阅读次数:
113
一、CentOS 安装教程(https://shimo.im/docs/YHdpx1MbG8EJj04M/ ) 二、Docker 环境初始化(https://shimo.im/docs/4jHdhoQQe0k8uhtd/) 三、Docker之利用Nginx部署HTML站点(https://shimo ...
分类:
其他好文 时间:
2020-06-15 15:32:33
阅读次数:
81
使防火墙firewall开放80端口 firewall-cmd --permanent --add-port=80/tcp --zone=public 配置yum源 vim /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=htt ...
分类:
其他好文 时间:
2020-06-13 21:08:11
阅读次数:
74
【深入nodejs开发】一、将node项目结合nginx部署到Centos7服务器 一、安装nginx服务器环境 1、使用ssh工具连接服务器 2、安装宝塔面板,方便服务器管理 1 yum install -y wget && wget -O install.sh http://download.b ...
分类:
Web程序 时间:
2020-05-27 11:59:18
阅读次数:
84
Nginx下载nginx官网下载地址:https://nginx.org/en/download.html下载最新稳定版本的Nginx:wget-qhttps://nginx.org/download/nginx-1.16.0.tar.gzNginx源代码编译安装系统安装必备组件:yuminstallgccgcc-c++pcrepcre-develzlib-developenssl-develop
分类:
系统相关 时间:
2020-05-25 16:07:56
阅读次数:
87
在本文中将介绍在Docker中通过django + uwsgi + nginx部署方式部署Django项目,
由于记录的是学习过程,使用的都是目前较高的版本。
python 版本为3.8.3
django 版本为3.0.6
nginx 版本为1.17.10
好了简单的介绍之后,就进入正题... ...
分类:
其他好文 时间:
2020-05-21 12:02:39
阅读次数:
91