「InvoicePlane」の版間の差分
Kusanaginoturugi (トーク | 投稿記録) (→設定: PHPの設定をウェブサーバーの上に移動) |
Kusanaginoturugi (トーク | 投稿記録) (→Nginx: nginxの設定ファイルの記述を追加) |
||
53行目: | 53行目: | ||
# ln -s /usr/share/webapps/invoiceplane/ /srv/http/invoiceplane |
# ln -s /usr/share/webapps/invoiceplane/ /srv/http/invoiceplane |
||
+ | |||
+ | [[nginx]]の設定ファイルを作成 |
||
+ | {{hc|/etc/nginx/invoiceplane.conf|<nowiki> |
||
+ | server { |
||
+ | listen 80; |
||
+ | root /srv/http/invoiceplane; |
||
+ | index index.php index.html index.htm; |
||
+ | server_name invoiceplane.example.com; |
||
+ | |||
+ | location / { |
||
+ | try_files $uri $uri/ /index.php?q=$uri&$args; |
||
+ | } |
||
+ | location ~ .php$ { |
||
+ | try_files $uri = 404; |
||
+ | fastcgi_pass unix:/run/php-fpm/php-fpm.sock; |
||
+ | fastcgi_index index.php; |
||
+ | include fastcgi.conf; |
||
+ | } |
||
+ | |||
+ | location = /favicon.ico { |
||
+ | log_not_found off; |
||
+ | access_log off; |
||
+ | } |
||
+ | |||
+ | access_log /var/log/nginx/invoiceplane_access.log main; |
||
+ | error_log /var/log/nginx/invoiceplane_error.log; |
||
+ | } |
||
+ | </nowiki>}} |
||
+ | |||
+ | 上記ファイルをインクルードします。{{ic|/etc/nginx/nginx.conf}} |
||
+ | include invoiceplane.conf; |
||
=== インストールウィザード === |
=== インストールウィザード === |
2016年4月1日 (金) 14:57時点における版
InvoicePlane は見積書・請求書・顧客・入金を管理するセルフホスト型のオープンソースアプリケーションです。
目次
インストール
invoiceplaneAUR パッケージをインストールしてください。
設定
データベース
以下は MariaDB を使って Invoiceplane のデータベースをセットアップする例です。データベースの名前は invoiceplane
、ユーザー名は invoiceplane
、パスワードは password
としています:
CREATE DATABASE invoiceplane; GRANT ALL PRIVILEGES ON invoiceplane.* TO invoiceplane@'localhost' IDENTIFIED BY 'password'; FLUSH PRIVILEGES;
PHPの設定
公式リポジトリの php-mcrypt をインストールしてください。
そして、/etc/php/php.ini
の mcrypt.so を有効にします。
extension=mcrypt.so
ウェブサーバー
Apache
Apache の設定ファイルを作成:
/etc/httpd/conf/extra/invoiceplane.conf
Alias /invoiceplane "/usr/share/webapps/invoiceplane" <Directory "/usr/share/webapps/invoiceplane"> DirectoryIndex index.php AllowOverride All Options FollowSymlinks Require all granted </Directory>
そして /etc/httpd/conf/httpd.conf
にファイルを記述:
# InvoicePlane configuration Include conf/extra/invoiceplane.conf
Lighttpd
Lighttpd の設定に invoiceplane のエイリアスを作成:
alias.url = ( "/invoiceplane" => "/usr/share/webapps/invoiceplane/")
それから設定で mod_alias, mod_fastcgi, mod_cgi を有効にしてください (server.modules セクション)。
Nginx
nginx で invoiceplane を使用するには、まず使用したいサーバーのルートディレクトリを確認してください。ルートディレクトリが /srv/http
の場合、以下のようにシンボリックリンクを作成:
# ln -s /usr/share/webapps/invoiceplane/ /srv/http/invoiceplane
nginxの設定ファイルを作成
/etc/nginx/invoiceplane.conf
server { listen 80; root /srv/http/invoiceplane; index index.php index.html index.htm; server_name invoiceplane.example.com; location / { try_files $uri $uri/ /index.php?q=$uri&$args; } location ~ .php$ { try_files $uri = 404; fastcgi_pass unix:/run/php-fpm/php-fpm.sock; fastcgi_index index.php; include fastcgi.conf; } location = /favicon.ico { log_not_found off; access_log off; } access_log /var/log/nginx/invoiceplane_access.log main; error_log /var/log/nginx/invoiceplane_error.log; }
上記ファイルをインクルードします。/etc/nginx/nginx.conf
include invoiceplane.conf;
インストールウィザード
データベースとウェブサーバーを設定したら、http://yourdomain/invoiceplane/setup からインストールウィザードのページを開いて指示に従ってください。
ローカリゼーション
英語以外の言語を使いたい場合は Translation / Localization を参照してください。