Skip to content

Instantly share code, notes, and snippets.

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

Eldar Chamoukhamedov eldarshamukhamedov

👻
clear()
  • Montreal, QC
  • 08:31 (UTC -05:00)
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 / {