Skip to content

Instantly share code, notes, and snippets.

View nazroll's full-sized avatar

Nazrul Kamaruddin nazroll

View GitHub Profile

Keybase proof

I hereby claim:

  • I am nazroll on github.
  • I am nazroll (https://keybase.io/nazroll) on keybase.
  • I have a public key whose fingerprint is FF41 D9B4 8AC0 9F44 FF7A 9C24 EC01 09D4 4F77 CAD6

To claim this, I am signing this object:

@nazroll
nazroll / nginx_config_drupal8.conf
Last active January 24, 2016 11:41
NGINX config file for Drupal 8 setup.
server {
listen 80;
# Domain/subdomain/localhost
server_name localhost;
root /path/to/drupal8/installation;
# Path to access_log
access_log /usr/local/etc/nginx/logs/access.log main;
@nazroll
nazroll / gsutil_cron_example.sh
Last active October 13, 2022 21:20
A shell script example to run "gsutil" as a cronjob
#! /bin/bash
# Replace "/path/to/gsutil/" with the path of your gsutil installation.
PATH="$PATH":/path/to/gsutil/
# Replace "/home/username/" with the path of your home directory in Linux/Mac.
# The ".boto" file contains the settings that helps you connect to Google Cloud Storage.
export BOTO_CONFIG="/home/username/.boto"
# A simple gsutil command that returns a list of files/folders in your bucket.