Twan07 commited on
Commit
ea05553
·
verified ·
1 Parent(s): a651f28

Create nginx/nginx.conf

Browse files
Files changed (1) hide show
  1. nginx/nginx.conf +15 -0
nginx/nginx.conf ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ events {}
2
+
3
+ http {
4
+ server {
5
+ listen 7860;
6
+
7
+ location /api/ {
8
+ proxy_pass http://127.0.0.1:3000;
9
+ }
10
+
11
+ location / {
12
+ proxy_pass http://127.0.0.1:5173;
13
+ }
14
+ }
15
+ }