Last active
March 4, 2024 08:46
-
-
Save mtsukamoto/d18a0f6a7391280082599978e1bf4e9e to your computer and use it in GitHub Desktop.
Amazon Linux 2023 userdata to install flatpress 1.2.1 (japanese)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo yum update -y | |
sudo yum install -y httpd php | |
curl https://github.com/flatpressblog/flatpress/archive/1.2.1.zip -O -L | |
curl https://hfj.sakura.ne.jp/dl/FlatPress1.2.1-LanguagePack-Japanese1.2.zip -O -L | |
unzip -qq 1.2.1.zip | |
unzip -qq FlatPress1.2.1-LanguagePack-Japanese1.2.zip | |
sudo \cp -r -f flatpress-1.2.1/* /var/www/html | |
sudo \cp -r -f FlatPress1.2.1-LanguagePack-Japanese1.2/* /var/www/html | |
sudo chown apache:apache -R /var/www/html | |
sudo systemctl enable httpd | |
sudo systemctl start httpd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Amazon Linux 2023上に、データベースを使用しないPHP製ブログツールFlatPressをインストールするユーザーデータです。