nginxでサブディレクトリ配下のphpソースを対象にアクセスできるよう設定する nginx
nginxでサブディレクトリ配下のphpソースを対象にアクセスできるよう設定する <br>
以下、xxxxx.comのドメインを取得してそのphpソースを/var/www/html/yyyyy/zzzzz配下に格納した場合の設定
<pre class= brush:php >
# more /etc/nginx/conf.d/xxxxx.conf <br
laravelでコマンドラインバッチ作成 Laravel
そのために勉強
http://www.sigesaba.com/2015/03/laravel-5-cli-app.php
https://laravel10.wordpress.com/2015/05/13/%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%83%A9%E3%82%A4%E3%83%B3%E3%82%A2%E3%83%
centos7以降でのサービス自動起動設定 centos
centos7以降でのサービス自動起動設定
・自動起動のサービス一覧表示
systemctl list-unit-files -t service
・自動起動設定
systemctl stop nginx.service
systemctl start nginx.service
systemctl enable
nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成 nginx
nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成
各サーバごとに設定ファイルを作成して以下のようにセット。
# more /etc/nginx/conf.d/xxxxx.conf
<pre class= brush:php >
server {
listen 80;
server_
nginxをcentosにインストール FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream client がでまくる nginx
nginxをcentosにインストール FastCGI sent in stderr: Primary script unknown while reading response header from upstream client がでまくる
laravel mongodbでグルーピングしたキーでソート mongodb
mongodbでグルーピングしたキーでソート(larabel使用時)
<br>
以下、hostnameでグルーピングしている場合、その名前でソート。逆の場合(desc)は、-1にする
<br>
<pre class= brush:php >
$posts2 = Post::raw(function ($collection) 
laravelでmongodbに接続して、groupbyでグループごとの集計データをとってくる2 mongodb
(参考まで)
<pre class= brush:php >
ModelName::selectRaw( COUNT(*) AS count boolean_one date_trunc(¥ day¥ created_at) as date )
->where( created_at >= Carbon::now()->s
laravelでmongodbに接続して、groupbyでグループごとの集計データをとってくる mongodb
laravelでmongodbに接続して、groupbyでグループごとの集計データをとってくる
すごいわかりにくい。
なかなかぴんとこないけど、一応データとれた
やっぱりsqlって便利だったんだなと再認識
・本来のSQLでやりたいこと
select hostname count(*) from post_ta
laravel Debugbarの設定 Laravel
.envファイル APP_DEBUGの値(true/false)で設定
APP_DEBUG=false # true or false : laravel Debugbarの設定を変更する
デバッグバーを画面に表示するかどうか
ロギング
デバッグメッセージ表示
¥Debugbar::emer