nginx.conf 208 B

123456789
  1. server {
  2. listen 80;
  3. server_name frontend;
  4. location / {
  5. # This would be the directory where your React app's static files are stored at
  6. root /usr/share/nginx/html;
  7. try_files $uri /index.html;
  8. }
  9. }