搜索结果
查询Tags标签: nignx,共有 6条记录-
node+nignx简单搭建linux服务
1、远程连接服务器;mac环境连接方式,打开终端命令,点击左上角Shell-新建远程连接;输入ip地址,输入用户名密码点击连接。2、部署Node.js环境, 使用nvm安装多个Nodejs版本:1> 使用Git将源码克隆到本地的~/.nvm目录下,并检查最新版本;yum install git git clone h…
2022/2/24 7:24:25 人评论 次浏览 -
nignx 配置https
server {listen 80;server_name down.lizhanqi.top share.lizhanqi.top;rewrite ^(.*) https://$server_name$1 permanent; # 这里重定向到https } server {listen 443 ssl;server_name down.lizhanqi.top; index index.php index.html index.htm default.php def…
2021/9/1 23:09:07 人评论 次浏览 -
nignx 配置https
server {listen 80;server_name down.lizhanqi.top share.lizhanqi.top;rewrite ^(.*) https://$server_name$1 permanent; # 这里重定向到https } server {listen 443 ssl;server_name down.lizhanqi.top; index index.php index.html index.htm default.php def…
2021/9/1 23:09:07 人评论 次浏览 -
Linux安装nignx
一、安装编译工具及库文件yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel二、下载Nginxwget http://nginx.org/download/nginx-1.20.1.tar.gz三、检查并安装cd nginx-1.20.1 && ./configure --prefix=/usr/local/nginxmake &&a…
2021/8/28 7:36:05 人评论 次浏览 -
Linux安装nignx
一、安装编译工具及库文件yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel二、下载Nginxwget http://nginx.org/download/nginx-1.20.1.tar.gz三、检查并安装cd nginx-1.20.1 && ./configure --prefix=/usr/local/nginxmake &&a…
2021/8/28 7:36:05 人评论 次浏览 -
python分析nignx访问日志脚本分享
这篇文章主要介绍了python分析nignx访问日志脚本分享,本文直接给出实现代码,需要的朋友可以参考下
2019/7/13 21:35:06 人评论 次浏览