You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a custom nginx configuration (because i am behind a proxy) so I am not entirely sure if this would need a change as well. in any case here is my nginx configuration:
# Boilerplate
# after making changes, restart nginx: sudo nginx -s reload
server {
listen 80;
server_name domain.com 192.168.30.103;
location / {
proxy_pass http://127.0.0.1:54747; # Port 54747 is the port gatling assigned to the app
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Origin '';
}
}
EDIT: Following the steps above I was able to deploy my phoenix app. However the service is failing (i assume port variable doesn't get forwarded). At this point running the server outside a service is working fine but the obvious goal would be to run it in a service,
In tasks the command such as
mix phoenix.digest
is for Phoenix 1.2.I think it's time to add support for 1.3 version.
I current think 2 may be the solution.
The text was updated successfully, but these errors were encountered: