LoginSignup
0
2

More than 5 years have passed since last update.

homesteadのnginxでCakephpを使う

Last updated at Posted at 2017-08-08

SSHにログインする

vagrant ssh

rootに昇格

sudo su -

設定ファイルを編集する

cd /etc/nginx/sites-available
vi 対象のファイル.app

下記のように編集する

server {
    listen   80;
    server_name 【サーバー名】;

    # root directive should be global
    root   /home/vagrant/【プロジェクトのパス】/app/webroot/;
    index  index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/【エラーログのファイル名】 error;

    sendfile off;

    client_max_body_size 100m;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.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;
        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
    }

    location ~ /\.ht {
        deny all;
    }

    ssl_certificate     /etc/nginx/ssl/digmee.homestead.app.crt;
    ssl_certificate_key /etc/nginx/ssl/digmee.homestead.app.key;
}

再起動

sudo nginx -s reload
0
2
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
0
2