This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/php/7.0/fpm/php-fpm.conf | |
pid = /run/php/php7.0-fpm.pid | |
error_log = /var/log/php7.0-fpm.log | |
include=/etc/php/7.0/fpm/pool.d/*.conf | |
# /etc/php/7.0/fpm/pool.d/www.conf | |
user = www-data | |
group = www-data | |
listen = /run/php/php7.0-fpm.sock | |
listen.owner = www-data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set noswapfile | |
set number | |
set nocompatible | |
set tabstop=2 | |
set shiftwidth=2 | |
set smarttab | |
set expandtab | |
set smartindent | |
set textwidth=80 | |
set colorcolumn=+1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/adapters/application.js | |
import DS from 'ember-data'; | |
export default DS.JSONAPIAdapter.extend({ | |
host: 'http://0.0.0.0:8888', | |
namespace: 'api', | |
buildURL(record, suffix) { | |
return this._super(record, suffix) + '?_format=api_json'; | |
}, |