Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/mysql/99-akatsuki.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
bind-address = 0.0.0.0
max_connections = 500

# InnoDB - 20GB buffer pool for 32GB RAM system (CX53 VPS)
innodb_buffer_pool_size = 21474836480
# InnoDB - 8GB buffer pool for 16GB RAM system (CPX42 VPS)
innodb_buffer_pool_size = 8589934592
innodb_buffer_pool_instances = 4
innodb_flush_log_at_trx_commit = 1
innodb_flush_method = O_DIRECT
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail

# Hetzner Cloud CX53 server bootstrap script
# Hetzner Cloud CPX42 server bootstrap script
# Installs and configures all services for Akatsuki production

echo "=== Creating swap file (4GB) ==="
Expand Down
4 changes: 2 additions & 2 deletions tf/server.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ resource "hcloud_ssh_key" "deploy" {

resource "hcloud_server" "production" {
name = "akatsuki-production"
server_type = "cx53"
location = "fsn1"
server_type = "cpx42"
location = "nbg1"
image = "ubuntu-24.04"
ssh_keys = [hcloud_ssh_key.deploy.id]

Expand Down