码迷,mamicode.com
首页 >  
搜索关键字:context root cannot be empty    ( 74556个结果
nginx 请求多个域名指定对应的根目录
同一个nginx配置文件,请求不同的域名可以指定对应的目录 nginx配置 cat long.conf server { listen 80; server_name a.com b.com c.com; location / { root /home/long/$host/; index inde ...
分类:其他好文   时间:2021-02-27 13:10:39    阅读次数:0
本地CentOS8虚拟机LNMP环境搭建记录与问题解决!
环境: 本地虚拟机 最低配置: CPU:2 vCPU 内存:4GiB 硬盘:40G 软件版本: 操作系统:Linux localhost.localdomain 4.18.0-193.el8.x86_64 #1 SMP Fri May 8 10:59:10 UTC 2020 x86_64 x86_6 ...
分类:其他好文   时间:2021-02-27 13:08:36    阅读次数:0
CentOS下的日志管理
日志进程rsyslog httpd/nginx/mysql: 各类应用程序,可以以自己的方式记录日志 Rsyslog 是处理系统相关日志的进程 处理日志的进程 rsyslog rsyslog可以处理绝大部分日志记录,比如系统操作有关信息,如登录信息,程序的启动关闭信息 [root@CatdeXin- ...
分类:其他好文   时间:2021-02-27 13:03:19    阅读次数:0
1379. 找出克隆二叉树中的相同节点
算是第一个独立完成的中等题了。对二叉树进行一次先序遍历即可。 class Solution { public: TreeNode *targetNode; TreeNode *resultNode; TreeNode *getTargetCopy(TreeNode *original, TreeNo ...
分类:其他好文   时间:2021-02-26 13:09:42    阅读次数:0
ios文件挂载到目录
1.挂载 [root@localhost ios]# mount CentOS-7-x86_64-DVD-1908.iso -o loop /mnt 2.进入到目录查看 [root@localhost mnt]# lsCentOS_BuildTag EFI EULA GPL images isoli ...
分类:移动开发   时间:2021-02-26 13:07:04    阅读次数:0
Lesson 6 smash-and-grab
The expensive shops in a famous arcade near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the ow ...
分类:其他好文   时间:2021-02-26 13:05:25    阅读次数:0
C#更换桌面壁纸
WallpaperHelper.cs文件: using Microsoft.Win32; using System.IO; using System.Runtime.InteropServices; namespace NPOIDemo { /// <summary> /// 更换壁纸 /// </ ...
分类:Windows程序   时间:2021-02-26 13:00:29    阅读次数:0
软硬链接区别
1、本质 硬链接:本质是同一个文件 软链接:本质还是同一个文件 [root@CentOS8 data]# ln a.txt test/b.txt [root@CentOS8 data]# ll -i a.txt test/b.txt 131 -rw-r--r--. 2 root root 0 Feb ...
分类:其他好文   时间:2021-02-26 12:56:00    阅读次数:0
给k8s集群中的node节点加标签
1.增加节点标签 备注 =:代表增加标签 kubectl label nodes node3 node-role.kubernetes.io/node3= 2.减少节点标签 备注 -:代表减少标签 kubectl label nodes node3 node-role.kubernetes.io/n ...
分类:其他好文   时间:2021-02-26 12:55:02    阅读次数:0
107. Binary Tree Level Order Traversal II
问题: 给定二叉树,进行层序遍历,从底层向上输出。 Example 1: Input: root = [3,9,20,null,null,15,7] Output: [[15,7],[9,20],[3]] Example 2: Input: root = [1] Output: [[1]] Exam ...
分类:其他好文   时间:2021-02-26 12:54:45    阅读次数:0
74556条   上一页 1 ... 61 62 63 64 65 ... 7456 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!