Ubuntuで、apache2のドキュメントルートを変更する

参考サイト

環境

  • Ubuntu 18.10 desktop

手順

  • sudo vi /etc/apache2/apache2.conf
    • <Directory /var/www/> → <Directory /home/username/www/>
  • sudo vi /etc/apache2/sites-enabled/000-default.conf
    • DocumentRoot /var/www/html → DocumentRoot /home/username/www
  • sudo systemctl restart apache2

Gitの設定

リポジトリ作成

  • git init

git initした後するべきこと

  • git config --global user.name "任意のユーザ名"
  • git config --global user.email "任意のメールアドレス(xxxxxx@xxx.xxx)"

リポジトリにインデックスを追加する

  • git add --all

リポジトリにコミットする

  • git commit -m "init commit"

リモートオリジンと関連付ける

  • git remote add origin http://~

もし、リモートオリジンがすでにあると言われたら

  • git remote rename origin old-origin

リモートオリジンにプッシュする

  • git push -u origin --all