Skip to content

Instantly share code, notes, and snippets.

@mtsukamoto
Last active March 4, 2024 08:46
Show Gist options
  • Save mtsukamoto/d18a0f6a7391280082599978e1bf4e9e to your computer and use it in GitHub Desktop.
Save mtsukamoto/d18a0f6a7391280082599978e1bf4e9e to your computer and use it in GitHub Desktop.
Amazon Linux 2023 userdata to install flatpress 1.2.1 (japanese)
#!/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
@mtsukamoto
Copy link
Author

Amazon Linux 2023上に、データベースを使用しないPHP製ブログツールFlatPressをインストールするユーザーデータです。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment