1,下载nginx 2,解压后打开conf/nginx.conf 修改配置 server { listen 8841;#监听端口 server_name localhost;#代理服务地址 location / { #默认访问 root html; index index.html index.ph ...
分类:
其他好文 时间:
2021-04-26 13:57:20
阅读次数:
0
Location 对象 Location对象包含有关当前URL的信息。location对象是window对象的一部分,可以通过window.location属性访问。 注意:没有适用于location对象的公共标准,但所有主流浏览器都支持它。 Location 对象属性 可以在Location对 ...
分类:
编程语言 时间:
2021-04-24 13:50:06
阅读次数:
0
记录一下我vs code用到的插件及配置文件 { "workbench.colorTheme": "Visual Studio Light", "workbench.sideBar.location": "left", "editor.accessibilitySupport": "off", "w ...
分类:
其他好文 时间:
2021-04-22 15:38:33
阅读次数:
0
####rewrite语法 | Syntax: | rewrite regex replacement [flag]; | | | | | Default: | — | | Context: | server, location, if | //所有请求转发到/pages/maintain.html ...
分类:
其他好文 时间:
2021-04-21 12:32:16
阅读次数:
0
1.下载stack 官网下载即可 2.setup 修改~/.stack/config.ymal文件 配置如下: setup-info-locations: - "http://mirrors.tuna.tsinghua.edu.cn/stackage/stack-setup.yaml" urls: ...
分类:
其他好文 时间:
2021-04-20 14:11:05
阅读次数:
0
参考下面的代码即可。 package main import ( "time" "fmt" ) func main() { //获取当前时间 t := time.Now() //2018-07-11 15:07:51.8858085 +0800 CST m=+0.004000001 fmt.Prin ...
分类:
其他好文 时间:
2021-04-15 12:17:48
阅读次数:
0
flyway是一个数据库版本管理工具,集成进springboot后,每次系统升级启动时自动执行sql语句升级数据库,避免手动操作数据库。 1.maven引入依赖 <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core< ...
分类:
数据库 时间:
2021-04-15 12:02:41
阅读次数:
0
获取网页链接中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); i ...
分类:
Web程序 时间:
2021-04-13 12:43:17
阅读次数:
0
type Location = { //这是一个location pathname: Pathname; search: QueryString; query: Query; state: LocationState; action: Action; key: LocationKey;};class ...
分类:
其他好文 时间:
2021-04-13 12:11:38
阅读次数:
0
nginx基本入门: 1.静态的http服务器 nginx是一个http服务器,可以将服务器上的静态文件通过http协议展现给客户端 配置: server { listen 80; # 端口号 location / { # 静态文件路径 } } 2.反向代理服务器 什么是反向代理? 客户端本来可以直 ...
分类:
其他好文 时间:
2021-04-07 11:44:38
阅读次数:
0