Skip to content

Instantly share code, notes, and snippets.

View justim's full-sized avatar

Tim justim

  • Amsterdam, Netherlands
View GitHub Profile
@justim
justim / Commands.sh
Created May 4, 2018 14:28 — forked from nrollr/Commands.sh
Install PHP and NGINX on Amazon Linux AMI
## Install NGINX
$ sudo yum install nginx -y
## Install PHP and PHP-FPM
$ sudo yum install php -y
$ sudo yum install php-fpm -y
## Configure NGINX (see below)
$ sudo nano /etc/nginx/conf.d/default.conf
class InstancesView extends Component {
constructor() {
super();
this.goToPage = this.goToPage.bind(this);
}
goToPage(page) {
this._scrollableTabViewRef.goToPage(page);
}