Skip to content

Instantly share code, notes, and snippets.

View agalwood's full-sized avatar
🍙
Focusing

Dr_rOot agalwood

🍙
Focusing
View GitHub Profile
@agalwood
agalwood / zanphp.io.conf
Last active January 23, 2017 17:40
zanphp.io nginx config
server {
listen 80;
server_name zanphp.io;
charset utf-8;
access_log /data/logs/nginx/zanphp.access.log main;
error_log /data/logs/nginx/zanphp.error.log;
root /home/www/zanphp.io;
index index.html index.htm index.php;
@agalwood
agalwood / s.zanphp.io.conf
Last active April 16, 2017 04:10
zanphp.io static nginx conf
server {
listen 80;
server_name s.zanphp.io;
charset utf-8;
access_log /data/logs/nginx/s.zanphp.access.log main;
error_log /data/logs/nginx/s.zanphp.error.log;
root /home/www/zanphp.io/public;
index index.html index.htm index.php;