https://github.com/apollo-level2-web-dev/uni-auth-docker-aws-cicd
https://github.com/apollo-level2-web-dev/uni-auth-docker-aws-cicd
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/apollo-level2-web-dev/uni-auth-docker-aws-cicd
- Owner: Apollo-Level2-Web-Dev
- Created: 2023-11-01T08:07:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-01T09:48:06.000Z (over 1 year ago)
- Last Synced: 2025-01-28T01:17:00.154Z (4 months ago)
- Language: TypeScript
- Size: 120 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Nginx Configuration
```
server {
listen 80;
server_name auth.l2dev.xyz;
client_max_body_size 100m; # Maximum request size limitlocation / {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header Access-Controll-Allow-Origin "*";
proxy_pass http://localhost:5000;
}
}```