Skip to content

Instantly share code, notes, and snippets.

View syntaxlexx's full-sized avatar
🎯
You have to be run by ideas, not by hierarchy!

/SyntaxLexx syntaxlexx

🎯
You have to be run by ideas, not by hierarchy!
View GitHub Profile
@syntaxlexx
syntaxlexx / nginx.conf
Last active January 20, 2019 13:06 — forked from hjr3/nginx.conf
nginx phpfpm + CORS configuration
upstream phpfpm {
server 127.0.0.1:9000;
}
server {
listen 80;
server_name _;
root /var/www/html;
index index.php;