| Crates.io | axum-bootstrap |
| lib.rs | axum-bootstrap |
| version | 0.1.20 |
| created_at | 2025-03-29 15:53:55.109465+00 |
| updated_at | 2026-01-14 07:37:33.425946+00 |
| description | a way to bootstrap a web server with axum, including TLS, logging, monitoring, and more. |
| homepage | |
| repository | https://github.com/arloor/axum-bootstrap |
| max_upload_size | |
| id | 1611414 |
| size | 136,786 |
openssl req -x509 -newkey rsa:4096 -sha256 -nodes -keyout privkey.pem -out cert.pem -days 3650 -subj "/C=cn/ST=hl/L=sd/O=op/OU=as/CN=example.com"
#rm -rf /var/lib/mysql
docker stop mysql
mkdir -p /var/lib/mysql /etc/mysql/conf.d
cat > /etc/mysql/conf.d/ssl.cnf <<EOF
[mysqld]
default-time_zone = '+8:00'
require_secure_transport=ON
EOF
docker run -d --rm --name mysql \
--network host \
-v /var/lib/mysql:/var/lib/mysql \
-v /etc/mysql/conf.d:/etc/mysql/conf.d \
-e MYSQL_DATABASE=test \
-e MYSQL_ROOT_PASSWORD=xxxxxx \
docker.io/library/mysql:9.1
等待hyper支持HTTP3