Skip to content

Instantly share code, notes, and snippets.

View akuikialie's full-sized avatar

Achmad Ali Liesmana akuikialie

View GitHub Profile
@akuikialie
akuikialie / laravel
Created April 10, 2023 21:06 — forked from herusdianto/laravel
Laravel Nginx Virtual Host Example
# /etc/nginx/sites-available/laravel
server {
listen 80;
listen [::]:80 ipv6only=on;
root /var/www/html/laravel/public;
index index.php index.html index.htm;
server_name laravel.dev;
@akuikialie
akuikialie / vimrc
Created March 9, 2023 01:51 — forked from wheeyls/vimrc
My .vimrc (Windows, GVIM)
set nocompatible
call pathogen#infect()
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My Bundles
@akuikialie
akuikialie / .vimrc
Created March 9, 2023 01:51 — forked from jibone/.vimrc
My .vimrc for gvim on windows.
set number
colorscheme desert
set tabstop=4
set softtabstop=4
set shiftwidth=4
set listchars=tab:>\ ,eol
@akuikialie
akuikialie / apache2_vhost_config_vuejs_dist
Created March 3, 2023 04:27 — forked from 7rin0/apache2_vhost_config_vuejs_dist
VueJS: Apache / Nginx vhost config examples
<VirtualHost *:80>
DocumentRoot "/home/dev/server/project/dist/"
ServerName vuejs.project.local
<Directory /home/dev/server/project/dist/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require all granted
Order allow,deny
allow from all
@akuikialie
akuikialie / API.md
Created December 12, 2015 02:04 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@akuikialie
akuikialie / Test.md
Last active October 15, 2015 05:54
Soal Rooang

Assessment Test

Network

  • Tuliskan baris perintah untuk firewall menggunakan IPTABLES, untuk keperluan sebuah Website.
  • Tuliskan baris perintah untuk mengatur konfigurasi NAMESERVER.
  • Tuliskan apa saja yang perlu dilakukan untuk mengamankan sebuah Server.