このガイドでは、 Ubuntu14.04VPSにYOURLSをインストールする方法について説明します。 MariaDB、PHP-FPM、Nginxを使用します。 YOURLSはYourOwnURLShortenerの略です。 YOURLSは、PHPを使用して構築されたオープンソースのセルフホストアプリケーションであり、独自のURL短縮サービスを実行できます。このガイドは他のLinuxVPSシステムでも機能するはずですが、Ubuntu14.04VPS用にテストおよび作成されています。
SSH経由でVPSにログイン
ssh user@vps_IP
システムを更新し、必要なパッケージをインストールします
[user]$ sudo apt-get update && sudo apt-get -y upgrade [user]$ sudo apt-get install software-properties-common git nano
MariaDB10.1をインストールします
MariaDBリポジトリをソースリストに追加し、最新のMariaDBサーバーをインストールするには、次のコマンドを実行します。
[user]$ sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db [user]$ sudo add-apt-repository 'deb http://ftp.osuosl.org/pub/mariadb/repo/10.1/ubuntu trusty main' [user]$ sudo apt-get update [user]$ sudo apt-get install -y mariadb-server
インストールが完了したら、次のコマンドを実行してインストールを保護します。
[user]$ mysql_secure_installation
次に、YOURLSインストール用のデータベースを作成する必要があります。
[user]$ mysql -uroot -p
MariaDB [(none)]> CREATE DATABASE yourls; MariaDB [(none)]> GRANT ALL PRIVILEGES ON yourls.* TO 'yourls'@'localhost' IDENTIFIED BY 'yourls_passwd'; MariaDB [(none)]> FLUSH PRIVILEGES; MariaDB [(none)]> \q
PHP、composer、および必要なPHPモジュールをインストールします
PHPバージョン7の最新の安定バージョンと必要なすべてのモジュールをインストールするには、次のコマンドを実行します。
[user]$ sudo add-apt-repository -y ppa:ondrej/php-7.0 [user]$ sudo apt-get update [user]$ sudo apt-get -y install php7.0-fpm php7.0-cli php7.0-mysql php7.0-curl
PHP-FPM構成
ユーザー用に新しいPHP-FPMプールを作成します:
[user]$ sudo nano /etc/php/7.0/fpm/pool.d/your_user.conf
[your_user] user = your_user group = your_user listen = /var/run/php/php7.0-fpm-your_user.sock listen.owner = your_user listen.group = your_user listen.mode = 0666 pm = ondemand pm.max_children = 5 pm.process_idle_timeout = 10s pm.max_requests = 200 chdir = /
your_userを自分のユーザー名に変更することを忘れないでください。
PHP-FPMを再起動します:
[user]$ sudo service php7.0-fpm restart
YOURLSのクローンを作成して構成します
次のコマンドを使用して、YOURLSインストールのルートディレクトリを作成します。
[user]$ mkdir -p ~/myYOURLS.com/{public_html,logs}
githubリポジトリのクローンを作成する
[user]$ git clone --branch master https://github.com/YOURLS/YOURLS.git ~/myYOURLS.com/public_html
user/config-sample.php
をコピーします user/config.php
へのファイル 。
[user]$ cp ~/myYOURLS.com/public_html/user/config-sample.php ~/myYOURLS.com/public_html/user/config.php
user/config.php
を開きます 次の値をファイルして編集します
[user]$ nano ~/myYOURLS.com/public_html/user/config.php
/** MySQL database username */define( 'YOURLS_DB_USER', 'yourls' ); /** MySQL database password */define( 'YOURLS_DB_PASS', 'yourls_passwd' ); /** The name of the database for YOURLS */define( 'YOURLS_DB_NAME', 'yourls' ); ** If you define it to "http://sho.rt", don't use "http://www.sho.rt" in your browser (and vice-versa) */define( 'YOURLS_SITE', 'http://myYOURLS.com' ); /** A random secret hash used to encrypt cookies. You don't have to remember it, make it long and complicated. Hint: copy from http://yourls.org/cookie **/define( 'YOURLS_COOKIEKEY', 'fNK$M]~BfF&f0S#{X3P)sMM#A%2)R27D&THBMa8V' ); /** Username(s) and password(s) allowed to access the site. Passwords either in plain text or as encrypted hashes ** YOURLS will auto encrypt plain text passwords in this file ** Read http://yourls.org/userpassword for more information */$yourls_user_passwords = array( 'your_username' => 'your_password', // 'username2' => 'password2', // You can have one or more 'login'=>'password' lines );
Nginxをインストールして構成する
Ubuntu 14.04にはnginxバージョン1.4が付属しています。Nginxバージョン1.8の最新の安定バージョンをインストールするには、次のコマンドを実行します。
[user]$ sudo add-apt-repository -y ppa:nginx/stable [user]$ sudo apt-get update [user]$ sudo apt-get -y install nginx
次のコンテンツを含む新しいNginxサーバーブロックを作成します。
[user]$ sudo nano /etc/nginx/sites-available/myYOURLS.com
server { listen 80; server_name myYOURLS.com; root /home/your_user/myYOURLS.com/public_html; access_log /home/your_user/myYOURLS.com/logs/access.log; error_log /home/your_user/myYOURLS.com/logs/error.log; index index.php; location / { try_files $uri $uri/ /yourls-loader.php; expires 14d; add_header Cache-Control 'public'; } location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.0-fpm-your_user.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_intercept_errors off; fastcgi_buffer_size 16k; fastcgi_buffers 4 16k; } }
your_userを自分のユーザー名に変更することを忘れないでください。
シンボリックリンクを作成してサーバーブロックをアクティブ化します:
[user]$ sudo ln -s /etc/nginx/sites-available/myYOURLS.com /etc/nginx/sites-enabled/myYOURLS.com
Nginx構成をテストし、nginxを再起動します:
[user]$ sudo nginx -t [user]$ sudo service nginx restart
最終ステップ
お気に入りのWebブラウザでhttp://myYOURLS.com/adminを開くと、YOURLSのインストール画面が表示されます。 [Install YOURLS]ボタンをクリックして、データベースにデータを入力します。
それでおしまい。これで、Ubuntu14.04VPSにYOURLSが正常にインストールされました。 YOURLSのインストールを管理する方法の詳細については、YOURLSの公式ドキュメントを参照してください。
もちろん、Linux VPSホスティングサービスのいずれかを使用している場合は、これを行う必要はありません。その場合は、専門のLinux管理者にセットアップを依頼するだけです。 24時間年中無休でご利用いただけます。リクエストはすぐに処理されます。
PS 。この投稿が気に入った場合は、左側のボタンを使用してソーシャルネットワーク上の友達と共有するか、下に返信を残してください。ありがとう。