部署nginx #1.先去查看仓库有没有镜像 root@fanwd-virtual-machine:/home# docker search nginx NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. ...
分类:
其他好文 时间:
2021-04-08 13:07:20
阅读次数:
0
nginx基本入门: 1.静态的http服务器 nginx是一个http服务器,可以将服务器上的静态文件通过http协议展现给客户端 配置: server { listen 80; # 端口号 location / { # 静态文件路径 } } 2.反向代理服务器 什么是反向代理? 客户端本来可以直 ...
分类:
其他好文 时间:
2021-04-07 11:44:38
阅读次数:
0
错误详细信息: Cloning into 'aplanmis-project'...remote: Enumerating objects: 176887, done.remote: Counting objects: 100% (176887/176887), done.remote: Compr ...
分类:
其他好文 时间:
2021-04-07 10:51:02
阅读次数:
0
话不多说,直接上代码,这是项目目录结构,DDD领域驱动模型,流程实例单独一个package 发起流程的代码如下,如要传入流程定义的key,流程实例名称,和发起人id @ApiOperation(value = "发起流程", httpMethod = "POST") @PostMapping("st ...
分类:
其他好文 时间:
2021-04-06 14:46:33
阅读次数:
0
安装是需要的环境 一. gcc 安装安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装: yum install gcc-c++ 二. PCRE pcre-devel 安装PCRE(Perl Compatible Regular Expres ...
分类:
其他好文 时间:
2021-04-06 14:41:24
阅读次数:
0
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:
其他好文 时间:
2021-04-06 14:21:02
阅读次数:
0
本文主要介绍了vue前端打包和docker部署相关内容,到目前为止,crudapi-admin-web代码已经完成,后续会继续优化代码,文档也会持续更新。每一篇文章对应的代码,都打上了tag,命名规则为t1,t2..., 欢迎下载代码学习和交流。 ...
docker上启动nginx,并配置修改nginx的配置文件1.使用docker下载nginx 镜像 docker pull nginx 2.启动nginx: docker run --name nginx -p 80:80 -d nginx 这样就简单的把nginx启动了,但是我们想要改变配置文件 ...
分类:
其他好文 时间:
2021-04-05 12:40:01
阅读次数:
0
题目地址 http://101.201.126.95:7012/ 访问 key.php 跳转 F12查看源码 <?php <head> <title>ISCC | 寻找小明</title> <style> <p>他究竟在哪呢... </div>。。。 <!-- error_reporting(0); ...
分类:
其他好文 时间:
2021-04-05 12:17:05
阅读次数:
0
一、测试 import tensorflow as tf from tensorflow import keras from tensorflow.keras import datasets import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' # x ...
分类:
其他好文 时间:
2021-04-05 12:07:04
阅读次数:
0