Skip to content

Instantly share code, notes, and snippets.

View Rocketeer007's full-sized avatar

Nick Price Rocketeer007

View GitHub Profile
@Rocketeer007
Rocketeer007 / react-app-nginx
Created July 22, 2018 13:43
nginx configuration for create-react-app with backend proxy
server {
listen 80;
server_name my-react-app.mydomain.com;
location / {
root /home/user/my-react-app/client/build/;
try_files $uri $uri/ @node_backend;
}
location @node_backend {