1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

お名前.comレンタルサーバーにExmentをインストールする

Last updated at Posted at 2020-05-05

お名前.comのレンタルサーバーRSExmentをインストールしてみました。

Xserverとの相違点
https://exment.net/docs/#/ja/install_rental

#composerをインストールします。

curl -sS https://getcomposer.org/installer | php -- --install-dir=$HOME/usr/bin/

mv $HOME/usr/bin/composer.phar $HOME/usr/bin/composer

#Exmentのインストールを行います。

cd
mkdir laravel
cd laravel
wget https://exment.net/downloads/ja/exment.zip
unzip exment.zip
rm exment.zip

#シンボリックリンクを作成します。

ln -s $HOME/laravel/exment/public $HOME/public_html/(ドメイン名)/db

htaccessの修正

「/laravel/exment/public」に存在する.htaccessに下記記述があると機能しない

#下記を削除
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

#SSL化する
インストール時にhttpsの設定をし忘れた場合

/laravel/exment/config/admin.php
 /*
    |--------------------------------------------------------------------------
    | Access via `https`
    |--------------------------------------------------------------------------
    |
    | If your page is going to be accessed via https, set it to `true`.
    |
    */
    'https' => env('ADMIN_HTTPS', false),

   'https' => env('ADMIN_HTTPS', ture),

#アップデートする

#プロジェクトのルートディレクトリへ移動
[ ~]$ cd laravel/exment


#初回のみ
[ exment]$ wget https://exment.net/downloads/cmd/ExmentUpdateLinuxSakura.sh
Saving to: 'ExmentUpdateLinuxSakura.sh'

100%[==================================================================================>] 357         --.-K/s   in 0s

 'ExmentUpdateLinuxSakura.sh' saved [357/357]


#初回のみ
[ exment]$ chmod 775 ExmentUpdateLinuxSakura.sh


#2回目以降は下記コマンドでアップデート実行
[ exment]$ sh ExmentUpdateLinuxSakura.sh


Execute Update
Could not open input file: artisan
Finish Update!

以上

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?