-
Notifications
You must be signed in to change notification settings - Fork 83
Open
Labels
P1A high priority bug; for example, a single project is unusable or has many test failuresA high priority bug; for example, a single project is unusable or has many test failuresdart-debug-extensiontriaged
Description
I'm trying to develop a flutter web app behind a nginx server. It worked few weeks ago but now I got this notification :
webdev/dwds/debug_extension_mv3/web/messaging.dart
Lines 212 to 215 in 51b5484
displayNotification( | |
'Unexpected sender ${sender.origin}. Please file a bug at go/dde-bug or https://github.com/dart-lang/webdev', | |
isError: true, | |
); |
My nginx conf
server {
server_name <REMOTE_HOST>
location /api {
proxy_pass <API>
}
location / {
proxy_pass http://localhost:9020;
# FOR DEVELOPMENT
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_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
}
The 9020 port is a remote docker container with the flutter app
snapsl
Metadata
Metadata
Assignees
Labels
P1A high priority bug; for example, a single project is unusable or has many test failuresA high priority bug; for example, a single project is unusable or has many test failuresdart-debug-extensiontriaged