Skip to content

Instantly share code, notes, and snippets.

View Ahmedsaber9's full-sized avatar

Ahmed Saber Ahmedsaber9

  • Egypt
View GitHub Profile
@hjr3
hjr3 / nginx.conf
Created September 23, 2012 17:58
nginx phpfpm + CORS configuration
upstream phpfpm {
server 127.0.0.1:9000;
}
server {
listen 80;
server_name _;
root /var/www/html;
index index.php;