首页 > TAG信息列表 > unless

docker aria2 pro

https://p3terx.com/archives/docker-aria2-pro.html sudo docker run -d --name aria2-pro --restart unless-stopped --log-opt max-size=1m --network host -e PUID=$UID -e PGID=$GID -e RPC_SECRET=chenglong -e RPC_PORT=6800 -e LISTEN_PORT=6888 -v ~/aria2

Thymeleaf 学习笔记

Thymeleaf 官网英文文档:https://www.thymeleaf.org/ 平时工作有接触到Thymeleaf 框架,因为网上只有英文的文档,所以自己希望记录一些常用的写法,希望对大家也有用。 常用的th标签 有非常多的标签,这里只列出最常用的几个,由于一个标签内可以包含多个th:x属性,其生效的优先级顺序为

2019NiZhuanSiWei

考点:php伪协议、 2019]NiZhuanSiWei 考点:php伪协议、 打开后是源码,拖到vscode里审计 第一个绕过点: if(isset(text,‘r’)===“welcome to the zjctf”)) 可以用data://写入协议 所以第一个payload: ?text=data://text/plain,welcome to the zjctf 接着审计,第二个绕

SpringBoot2.x系列教程(三十一)Thymeleaf的基本使用

本篇文章通过实例为大家讲解Thymeleaf的基本使用。 赋值 基本赋值 <h1 th:text="${name}">默认值</h1> 字符串拼接 普通拼接形式: <p th:text="'Hello ' + ${name}"></p> 简洁写法: <p th:text="|Hello ${name}|"></p> 条件判断 条件判断有两种形式:th

使用docker私有化部署nuget server-proget

在linux上使用docker部署proget 首先创建共用网络proget docker network create proget 创建postgresql库 docker run -d -v /etc/localtime:/etc/localtime:ro -v /var/proget/db:/var/lib/postgresql/data --net=proget --name=proget-postgres --restart=unless-stopped post

Thymeleaf

springboot直接引入 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency> 非springboot项目使用如下依赖: <dependency> <groupId>org.thym