Skip to content

Instantly share code, notes, and snippets.

View techfish-11's full-sized avatar

techfish techfish-11

View GitHub Profile
@techfish-11
techfish-11 / install.sh
Last active September 7, 2025 18:54
俺用WordPressインストールスクリプト
#!/bin/bash
# WordPress日本語版 + Nginx + MySQL/MariaDBをUbuntu Serverにプロダクションレディでセットアップするスクリプト
set -e
apt update && apt install curl
# --- 設定値(必要に応じて編集) ---
DB_NAME="wordpress"
DB_USER="wpuser"