Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-01T09:48:06.000Z (about 1 year ago)
- Last Synced: 2023-11-01T18:25:27.483Z (about 1 year ago)
- Language: TypeScript
- Size: 120 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- 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;
}
}```