Skip to content

Instantly share code, notes, and snippets.

View TechnoDexx's full-sized avatar
🏠
Working from home

Igor Golov TechnoDexx

🏠
Working from home
  • Russian Federation
View GitHub Profile
@TechnoDexx
TechnoDexx / api.autism-support.ru
Last active December 16, 2017 12:19
Config files for NGINX (api.autism-support.ru)
server {
listen 80;
root /var/www/platform/httpdocs;
index index.php index.html index.htm index.nginx-debian.html;
server_name api.autism-support.ru;
location / {
try_files $uri $uri/ /index.php$args;
@TechnoDexx
TechnoDexx / map.autism-support.ru
Last active December 16, 2017 12:22
Config files for NGINX (map.autism-support.ru)
server {
listen 80;
root /var/www/platform-client;
index index.php index.html index.htm index.nginx-debian.html;
server_name map.autism-support.ru;
location / {
try_files $uri $uri/ =404;