aleksn7

nginx-config

Jan 24th, 2021
1,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.27 KB | None | 0 0
  1. # proxy cache config
  2. server {
  3.     listen       8000;
  4.     server_name  localhost;
  5.  
  6.     client_max_body_size 10M;
  7.  
  8.     root /Users/aleks/Desktop/tp-secondsem/frontend/Frontend/dist; # свой путь
  9.  
  10.     location / {
  11.         try_files $uri /index.html;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment