Skip to content

Instantly share code, notes, and snippets.

View eldarshamukhamedov's full-sized avatar
👻
clear()

Eldar Shamukhamedov eldarshamukhamedov

👻
clear()
  • New York, NY
View GitHub Profile
{ "message": "hello!" }
@eldarshamukhamedov
eldarshamukhamedov / nginx.default.conf
Created April 19, 2019 18:26
NGINX config to serve React Router V4 apps
server {
listen 80;
server_name localhost;
location /healthz {
return 200 'OK';
add_header Content-Type text/plain;
}
location / {