Skip to content

Instantly share code, notes, and snippets.

View aqidd's full-sized avatar

Bukhori Muhammad Aqid aqidd

View GitHub Profile
server {
listen 80;
client_max_body_size 10m;
gzip on;
root /var/www/appsmith;
index index.html index.htm;
location /.well-known/acme-challenge/ {
<template>
<div>
<section class="alpine card__wrapper-content accent-line accent-line--bottom">
<md-layout class="alpine block-column">
<md-layout md-flex="50" class="alpine block-column__left">
<select-registered-country :value="entry.sender.country.code" @input="updateSelectedCountry"></select-registered-country>
</md-layout>
<md-layout md-flex="50" class="alpine block-column__right" v-show="entry.sender.country.code">
<select-mitra v-model="selected_mitra" :value="entry.mitra_id" :country="entry.sender.country.code" @input="updateSelectedMitra"></select-mitra>
<template>
<input v-model="message">
</template>
<script>
import { mapMutations } from 'vuex'
export default {
computed: {
message: {
@aqidd
aqidd / newrelic-setup.sh
Created November 26, 2016 15:30
installing new relic for your server and PHP app
#!/bin/bash
license_key=$1
if [[ -n "$license_key" ]]; then
echo "Installing newrelic..."
else
echo "no license key. please add license key as parameter"
exit 1
fi