52 lines
No EOL
2 KiB
Markdown
52 lines
No EOL
2 KiB
Markdown
# Applicazione Flutter e relativo server json utilizzando MongoDB
|
|
|
|
modificare .env per il server
|
|
|
|
utilizza auth.patachina.it per comunicare
|
|
|
|
nginx è settato così
|
|
```bash
|
|
server {
|
|
listen 443 ssl;
|
|
server_name auth.patachina.it;
|
|
|
|
ssl_certificate ssl/live/patachina.it/fullchain.pem;
|
|
ssl_certificate_key ssl/live/patachina.it/privkey.pem;
|
|
|
|
# per aggancio con applicazione Flutter android
|
|
location /.well-known/ {
|
|
proxy_pass http://192.168.1.3:3400/.well-known/;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
# Per farlo funzionare anche su Browser anche senza noCORS difatti abilita tutte le origini
|
|
location /api/ {
|
|
proxy_pass http://192.168.1.3:3400; # o il tuo backend
|
|
|
|
# Header CORS per tutte le richieste
|
|
add_header 'Access-Control-Allow-Origin' '*' always;
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
|
|
add_header 'Access-Control-Allow-Headers' 'Origin, Content-Type, Accept, Authorization' always;
|
|
|
|
# Gestione preflight OPTIONS
|
|
if ($request_method = OPTIONS) {
|
|
add_header 'Access-Control-Max-Age' 86400;
|
|
add_header 'Access-Control-Allow-Origin' '*' always;
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
|
|
add_header 'Access-Control-Allow-Headers' 'Origin, Content-Type, Accept, Authorization' always;
|
|
add_header 'Content-Length' 0;
|
|
add_header 'Content-Type' 'text/plain charset=UTF-8';
|
|
return 204;
|
|
}
|
|
}
|
|
|
|
# per il passaggio dei dati
|
|
location / {
|
|
proxy_pass http://192.168.1.3:3400;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|
|
``` |