Nginx配置图片等静态资源 Nginx是一个高性能的HTTP和反向代理web服务器,关于Nginx配置的操作细节如下: 场景一:图片静态服务器 在/usr/local/nginx/html下创建一个目录名为 images 和 static 目录 各自都放一个 test.jpg http { server { #监听端口 listen 80; #服务名称用于配置域名 server_name localhost; client_max_body_size 1024M; #设置一个变量 set $static_path /usr/local/nginx/html; # 默认location location / { root /usr/local/nginx/html/www; index index.html index.htm; } #...
Linux Directory Structure Explained with Examples
Linux目录结构说明 /bin – User Binaries 存放二进制可执行文件(ls, cat, mkdir, ps, ls, ping, grep, cp等),在单用户模式下需要使用的常见linux命令位于此目录下。 Contains binary executables.Common linux commands you need to use in single-user modes are located under this directory.Commands used by all the users of the system are located here.For example: ps, ls, ping, grep, cp. /etc – Configuration Files 存放系统管理和配置文件 Contains configuration...
git Cheat Sheet
Beginner’s Guide to Git
Git入门指南 一、安装Git 要使用Git首先需要进行环境的配置与安装。可以从Git官网直接下载安装程序,地址:,然后按默认选项安装即可。 注意:安装过程中有一步是选择默认主分支,此时有选项让选择master还是main作为默认分支,建议选择main,不再选择默认的master。 安装完成后,进行全局设置: $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" 二、添加远程库 可以选择两种方案: 本地已存在git项目(即已在本地执行过git init命令的),需要同步至远程服务器(如github)的空白仓库。 从远程库克隆,选择本地要存放仓库的文件夹的母目录,Git Bash执行命令git...