Subham9126 commited on
Commit
a2a9e57
·
verified ·
1 Parent(s): d521e0c

Create nginx.cof

Browse files
Files changed (1) hide show
  1. nginx.cof +19 -0
nginx.cof ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ server {
2
+ listen 7860;
3
+
4
+ # Route to LocalStack (S3, DynamoDB, etc.)
5
+ location /aws/ {
6
+ proxy_pass http://localhost:4566/;
7
+ proxy_set_header Host $host;
8
+ }
9
+
10
+ # Route to your n8n
11
+ location /automation/ {
12
+ proxy_pass http://localhost:5678/;
13
+ }
14
+
15
+ # Route to your Vault
16
+ location /vault/ {
17
+ proxy_pass http://localhost:8200/;
18
+ }
19
+ }