百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术文章 > 正文

Caddy简单使用

nanshan 2025-01-18 22:52 13 浏览 0 评论

环境:CentOS 7系统

Caddy官网:https://caddyserver.com/

1、安装

1.1、方式1:下载预编译的文件

# 1、下载
wget https://github.com/caddyserver/caddy/releases/download/v2.8.4/caddy_2.8.4_linux_amd64.tar.gz
 
# 2、解压
tar -xf caddy_2.8.4_linux_amd64.tar.gz
 
# 3、移动文件到/usr/local/bin/
mv caddy /usr/local/bin/
 
# 4、查看版本
caddy version
 
# 5、命令帮助
# 启动:caddy start 或者 caddy run
# 重启:caddy reload
# 停止:caddy stop
caddy
 
# 6、启动
# 6.1、前台运行
caddy run
 
# 或者
# 6.2、后台运行
# caddy start --config caddy.json
# caddy run --config nginx.conf --adapter nginx
# caddy run --config caddy.file --adapter caddyfile
caddy start

1.2、方式2:使用源码编译安装

安装go:

# 1、下载
# 下载地址:https://go.dev/dl/
wget https://go.dev/dl/go1.23.3.linux-amd64.tar.gz
 
# 2、解压
tar -xf go1.23.3.linux-amd64.tar.gz -C /usr/local/
 
# 3、添加环境变量
# 添加到环境变量,编辑/root/.bash_profile文件,内容如下: 
GO_PATH=/usr/local/go/bin
PATH=$PATH:$HOME/bin:$GO_PATH
export PATH
 
# 4、使环境变量生效
source /root/.bash_profile
 
# 5、查看版本
go version
 
# 6、配置goproxy
go env -w GOPROXY=https://goproxy.cn,direct

安装Caddy:

# 1、下载
git clone "https://github.com/caddyserver/caddy.git"
 
# 2、切换目录
cd caddy/cmd/caddy/
 
# 3、构建
go build
 
# 4、复制文件到/usr/local/bin/
cp caddy /usr/local/bin/
 
# 5、其他
caddy
 
# 6、启动
# 6.1、前台运行
caddy run
 
# 或者
# 6.2、后台运行
# caddy start --config caddy.json
# caddy run --config nginx.conf --adapter nginx
# caddy run --config caddy.file --adapter caddyfile
caddy start

2、命令说明

# 命令
caddy
 
# 显示内容如下
 
Caddy is an extensible server platform written in Go.
 
At its core, Caddy merely manages configuration. Modules are plugged
in statically at compile-time to provide useful functionality. Caddy's
standard distribution includes common modules to serve HTTP, TLS,
and PKI applications, including the automation of certificates.
To run Caddy, use:
	- 'caddy run' to run Caddy in the foreground (recommended).
	- 'caddy start' to start Caddy in the background; only do this
	  if you will be keeping the terminal window open until you run
	  'caddy stop' to close the server.
When Caddy is started, it opens a locally-bound administrative socket
to which configuration can be POSTed via a restful HTTP API (see
https://caddyserver.com/docs/api).
Caddy's native configuration format is JSON. However, config adapters
can be used to convert other config formats to JSON when Caddy receives
its configuration. The Caddyfile is a built-in config adapter that is
popular for hand-written configurations due to its straightforward
syntax (see https://caddyserver.com/docs/caddyfile). Many third-party
adapters are available (see https://caddyserver.com/docs/config-adapters).
Use 'caddy adapt' to see how a config translates to JSON.
 
For convenience, the CLI can act as an HTTP client to give Caddy its
initial configuration for you. If a file named Caddyfile is in the
current working directory, it will do this automatically. Otherwise,
you can use the --config flag to specify the path to a config file.
 
Some special-purpose subcommands build and load a configuration file
for you directly from command line input; for example:
 
	- caddy file-server
	- caddy reverse-proxy
	- caddy respond
 
These commands disable the administration endpoint because their
configuration is specified solely on the command line.
 
In general, the most common way to run Caddy is simply:
 
	$ caddy run
 
Or, with a configuration file:
 
	$ caddy run --config caddy.json
 
If running interactively in a terminal, running Caddy in the
background may be more convenient:
 
	$ caddy start
	...
	$ caddy stop
 
This allows you to run other commands while Caddy stays running.
Be sure to stop Caddy before you close the terminal!
 
Depending on the system, Caddy may need permission to bind to low
ports. One way to do this on Linux is to use setcap:
 
	$ sudo setcap cap_net_bind_service=+ep $(which caddy)
 
Remember to run that command again after replacing the binary.
 
See the Caddy website for tutorials, configuration structure,
syntax, and module documentation: https://caddyserver.com/docs/
 
Custom Caddy builds are available on the Caddy download page at:
https://caddyserver.com/download
 
The xcaddy command can be used to build Caddy from source with or
without additional plugins: https://github.com/caddyserver/xcaddy
 
Where possible, Caddy should be installed using officially-supported
package installers: https://caddyserver.com/docs/install
 
Instructions for running Caddy in production are also available:
https://caddyserver.com/docs/running
 
Usage:
  caddy [command]
 
Examples:
  $ caddy run
  $ caddy run --config caddy.json
  $ caddy reload --config caddy.json
  $ caddy stop
 
Available Commands:
  adapt          Adapts a configuration to Caddy's native JSON
  add-package    Adds Caddy packages (EXPERIMENTAL)
  build-info     Prints information about this build
  completion     Generate completion script
  environ        Prints the environment
  file-server    Spins up a production-ready file server
  fmt            Formats a Caddyfile
  hash-password  Hashes a password and writes base64
  help           Help about any command
  list-modules   Lists the installed Caddy modules
  manpage        Generates the manual pages for Caddy commands
  reload         Changes the config of the running Caddy instance
  remove-package Removes Caddy packages (EXPERIMENTAL)
  respond        Simple, hard-coded HTTP responses for development and testing
  reverse-proxy  A quick and production-ready reverse proxy
  run            Starts the Caddy process and blocks indefinitely
  start          Starts the Caddy process in the background and then returns
  stop           Gracefully stops a started Caddy process
  storage        Commands for working with Caddy's storage (EXPERIMENTAL)
  trust          Installs a CA certificate into local trust stores
  untrust        Untrusts a locally-trusted CA certificate
  upgrade        Upgrade Caddy (EXPERIMENTAL)
  validate       Tests whether a configuration file is valid
  version        Prints the version
 
Flags:
  -h, --help      help for caddy
  -v, --version   version for caddy
 
Use "caddy [command] --help" for more information about a command.
 
Full documentation is available at:
https://caddyserver.com/docs/command-line

3、配置

3.1、方式1:命令行

详见:https://caddyserver.com/docs/command-line

caddy file-server(静态文件服务器):

# 参考:https://caddyserver.com/docs/command-line#caddy-file-server
 
# 命令
caddy file-server
	[-r, --root <path>]
	[--listen <addr>]
	[-d, --domain <example.com>]
	[-b, --browse]
	[--reveal-symlinks]
	[-t, --templates]
	[--access-log]
	[-v, --debug]
	[--no-compress]
	[-p, --precompressed]
 
# 示例
caddy file-server -r /usr/local/nginx/html -b

caddy respond(http服务器):

# 参考:https://caddyserver.com/docs/command-line#caddy-respond
 
# 命令
caddy respond
	[-s, --status <code>]
	[-H, --header "<Field>: <value>"]
	[-b, --body <content>]
	[-l, --listen <addr>]
	[-v, --debug]
	[--access-log]
	[<status|body>]
 
# 示例
caddy respond --listen :2000-2004 "I'm server {{.N}} on port {{.Port}}"

caddy reverse-proxy(http反向代理):

# 参考:https://caddyserver.com/docs/command-line#caddy-reverse-proxy
 
# 命令
caddy reverse-proxy
	[-f, --from <addr>]
	(-t, --to <addr>)
	[-H, --header-up "<Field>: <value>"]
	[-d, --header-down "<Field>: <value>"]
	[-c, --change-host-header]
	[-r, --disable-redirects]
	[-i, --internal-certs]
	[-v, --debug]
	[--access-log]
	[--insecure]
 
# 示例
# ----------from----------:
caddy respond --listen :2024 "I'm server {{.N}} on port {{.Port}}"
 
# ----------to----------:
# 当前浏览器访问8080端口,反向代理到2024端口
caddy reverse-proxy -t :2024 -f :8080

3.2、方式2:JSON文件

详见:https://caddyserver.com/docs/json/

1)编写caddy.json文件

{
	"apps": {
		"http": {
			"servers": {
				"example": {
					"listen": [":2015"],
					"routes": [
						{
							"handle": [{
								"handler": "static_response",
								"body": "Hello, world!"
							}]
						}
					]
				}
			}
		}
	}
}

2)加载配置

# 参考:https://caddyserver.com/docs/getting-started
 
# 1、上传文件
curl localhost:2019/load -H "Content-Type: application/json" -d @caddy.json
 
# 2、查看配置
curl localhost:2019/config/

3)访问站点

curl localhost:2015

3.3、方式3:Caddyfile文件

详见:https://caddyserver.com/docs/quick-starts/caddyfile

1)编写Caddyfile文件

:5566 {
	# 指定root为nginx的html目录
	root * /usr/local/nginx/html
	file_server
 
	log {
		output file /var/log/access.log
	}
 
	handle /halo/ {
		respond "hello world"
	}
 
	handle_path /local-nginx/* {
		# 代理本地nginx服务
		reverse_proxy localhost
	}
 
	handle_path /local-php/* {
		# 访问php项目
		root * /usr/local/nginx/html
		php_fastcgi localhost:9000
		file_server
	}
 
	handle /jump-csdn/ {
		# 重定向
		redir http://www.csdn.net/
	}
 
	handle_path /proxy-csdn/* {
		# 反向代理
		reverse_proxy https://www.csdn.net
	}
}
 
:6060 {
	reverse_proxy localhost
}
 
:7070 {
	redir http://www.baidu.com
}

2)加载配置

方式1:使用caddy start启动时,同时加载配置的情况

# 1、启动并加载配置
caddy start --config Caddyfile --adapter caddyfile
 
# 2、查看配置
curl localhost:2019/config/

注:如果不确定是否已启动caddy服务,使用ps aux | grep caddy命令查看。如果存在,使用caddy stop命令或者使用kill 进程id来停止服务。

方式2:caddy服务已经启动,使用curl命令上传文件的情况

# 参考:https://caddyserver.com/docs/quick-starts/caddyfile
 
# 1、上传文件
curl localhost:2019/load -H "Content-Type: text/caddyfile" --data-binary @Caddyfile
 
# 2、重启
caddy reload
 
# 3、查看配置
curl localhost:2019/config/

方式3:caddy服务已经启动,使用caddy adapt加载配置的情况

# 参考:https://caddyserver.com/docs/getting-started
 
# 1、加载配置
# 假设Caddyfile文件在/path/to目录下
# caddy adapt --config /path/to/Caddyfile
# 如果caddy adapt命令不指定--config参数,默认加载当前路径下的Caddyfile文件
caddy adapt
 
# 2、重启
caddy reload
 
# 3、查看配置
curl localhost:2019/config/

3)访问站点

# 浏览器访问以下地址:
# 其中:localhost替换成当前的 ip 或 域名
# localhost:5566/
# localhost:5566/halo/
# localhost:5566/local-nginx/
# localhost:5566/local-php/
# localhost:5566/jump-csdn/
# localhost:5566/proxy-csdn/
# localhost:6060/
# localhost:7070/

3.4、方式4:Nginx文件

详见:https://caddyserver.com/docs/config-adapters

1)安装xcaddy

# 参考:https://github.com/caddyserver/xcaddy#install
 
# 1、下载
wget https://github.com/caddyserver/xcaddy/releases/download/v0.4.4/xcaddy_0.4.4_linux_amd64.tar.gz
 
# 2、解压
tar -xf xcaddy_0.4.4_linux_amd64.tar.gz
 
# 3、移动文件到/usr/local/bin/
mv xcaddy /usr/local/bin/
 
# 4、查看版本
xcaddy version

2)安装nginx-adapter

# 参考:https://github.com/caddyserver/nginx-adapter
 
# 1、安装
xcaddy build --with github.com/caddyserver/nginx-adapter
 
# 2、移动文件到/usr/local/bin/
mv caddy /usr/local/bin/

3)编写Nginx配置文件

# 相关文档:
# https://github.com/caddyserver/nginx-adapter/
# https://github.com/caddyserver/nginx-adapter/blob/master/testdata/example1.conf
# https://github.com/caddyserver/nginx-adapter/blob/master/testdata/example2.conf
 
# 以下为nginx.conf配置内容:
 
http {
  server {
    listen 8080;
    location / {
      proxy_pass http://127.0.0.1:2024;
    }
  }
}

其中2024端口:

# 执行命令
caddy respond --listen :2024 "I'm server {{.N}} on port {{.Port}}"

4)检查配置文件

caddy validate -c nginx.conf -a nginx

5)加载配置

# 方式1:启动并加载配置
# caddy run --config nginx.conf --adapter nginx
# caddy start --config nginx.conf --adapter nginx
 
caddy start --config nginx.conf --adapter nginx
 
# 或者
# 方式2:caddy服务已经启动,使用curl命令上传文件
# 2.1、上传文件:
# curl localhost:2019/load -H "Content-Type: text/nginx" --data-binary @nginx.conf
# 2.2、重启:
# caddy reload
# 2.3、查看配置
# curl localhost:2019/config/ 

6)访问站点

# 浏览器访问以下地址:
# 其中:localhost替换成当前的 ip 或 域名
# localhost:8080/

4、参考

  • https://caddyserver.com/
  • https://caddyserver.com/docs/getting-started
  • https://github.com/caddyserver/caddy/tree/master/caddytest/integration/caddyfile_adapt

相关推荐

Linux 的磁盘系统,和你了解的Windows差别很大

我的C盘去哪了?一个系统,如果没有存储,那么也就不能称之为系统。存储性是一个完整系统的重要组成部分。例如AWS最开始的服务就是S3(用来存储数据的云服务),足以见得存储对于一个应用平台是多么的重要。...

一文读懂 Linux 硬盘挂载:从问题到解决方案

各位互联网大厂的后端开发伙伴们!在咱们日常工作中,操作Linux系统是常有的事儿吧。你们有没有遇到过这样的场景:新添加了一块硬盘,满心欢喜准备用来存储重要数据或者部署新的应用服务,却突然发现不知道...

硬盘分区(硬盘分区格式)

 磁盘(硬盘)分区,可以分C、D、E等分区,大家可能都会用,会根据自已的需要确定所需的空间,但分区是如何工作的呢,内容如下。Windows中有3类:MBR分区:MasterBootRecord,也...

parted命令工具分区介绍(particle命令)

linux系统磁盘分区通常可以使用fdisk和parted命令,当分区大小小于2TB的时候,两种皆可以使用,当分区大于2TB的话,就需要用parted分区。以下介绍parted命令相关使用,以sdb为...

Linux 服务器上查看磁盘类型的方法

方法1:使用lsblk命令lsblk输出说明:TYPE列显示设备类型,如disk(物理磁盘)、part(分区)、rom(只读存储)等。NAME列显示设备名称(如sda、nvme0n1)。TR...

Linux分区命令fdisk和parted使用介绍

摘要:一般情况下,Linux分区都是选择fdisk工具,要求硬盘格式为MBR格式,能支持的最大分区空间为2T。但是目前在实际生产环境中使用的磁盘空间越来越大,呈TB级别增长;而常用的fdisk这个工具...

linux 分区原理与名词解释(linux操作系统中的分区类型)

分区的意义将磁盘分成几份,每份挂在到文件系统的那个目录在linux里的文件系统Ext2:早期的格式,不支持日志功能Ext3:ext2改良版,增加了日志功能,是最基本且最常用的使用格式了Ext4:针对e...

linux 分区合并(linux合理分区)

查看虚拟机当前磁盘挂载情况fdisk-l选择磁盘fdisk/dev/sda查看磁盘分区情况p重新选择分区n选择主分区p保存w创建物理卷pvcreate/dev/sda3查看物理卷信息pvdi...

如何在 Linux 系统中永久禁用交换分区 ?

Linux操作系统中的交换分区或交换文件充当硬盘上的临时存储区域,当物理内存(RAM)满时,系统使用该存储区域。它用于交换较少使用的内存页,这样系统就不会因为运行应用程序而耗尽物理内存。随着技术的发...

Linux 如何知道硬盘已用多少空间、未用多少空间

刚出社会时,去了一家公司上班,老板为了省钱,买的服务器是低配的,硬盘大小只有40G,有一次网站突然不能访问了,排查半天才知道原来服务器的硬盘空间已用完,已无可用空间。第一步是查看硬盘的使用情况,第二步...

用Linux系统管理磁盘空间 就该这么来

要想充分有效的管理使用Linux系统中的存储空间,用户必须要做的就是双管齐下,一边扩充空间一边限制空间。不得不说的就是很多时候磁盘空间就像水资源,需节制水流。说到要如何实现限制空间就离不开使用LVM技...

Windows 11 磁盘怎么分区?(windows11磁盘怎么分区)

Windows11磁盘分区技术解析与操作指南:构建高效存储体系一、磁盘分区的技术本质与系统价值磁盘分区作为存储系统的基础架构,通过逻辑划分实现数据隔离与管理优化。Windows11采用NTF...

linux上创建多个文件分区,格式化为 ext2、ext3、ext4、XFS 文件

以下是在Linux系统上创建多个20GB文件分区并格式化为不同文件系统的分步指南:步骤1:创建基础文件(4个20GB文件)bash#创建4个20GB稀疏文件(实际占用空间随写入量增长)ddif=/...

救命的U盘低格哪家最强?(低格优盘)

周二时有位童鞋留言说U盘之前做过引导盘,现在格式化不了,用各种工具都不行,而且因为U盘厂商的关系,查不到U盘主控,无法量产恢复,特来求助。小编花了点时间特意弄坏一个U盘分区,终于试出方法了,特来分享一...

Linux 查看硬件磁盘存储大小和磁盘阵列(RAID)的组合方式

一、查看硬件磁盘存储大小查看所有磁盘信息:#lsblk该命令会列出所有磁盘(如/dev/sda、/dev/nvme0n1)及其分区和挂载点。查看磁盘总容量:fdisk-l#或parted-...

取消回复欢迎 发表评论: