Ivan Vergés
Ivan Vergés
The most used alternative would be Sidekiq, I'll try to improve this part. Thanks for your comments. And yes, "daemons" is used to run delayed_job as a daemon (but it...
well it seems that rails is trying to send the mail but it fails. My first idea would be to ensure that you can use your SMTP settings to send...
when you say that you are using decidim.test, you mean literally? .test domains are for... testing. If that's the case you need to add in your `/etc/hosts` system all the...
Clearly nginx is not reaching passenger (or puma), try to post here the nginx configuration
I'd say you have the problem in your decidim.conf file, try to use "_" and "default_server" in it: ``` server { listen 80 default_server; listen [::]:80 ipv6only=on; server_name decidim.test _;...
the remove the other configuration file, you cannot have to defintions of default_server as the message stands
in aws is easier, wherever you deploy the application the db:migrate command is run automatically. What you need to do is to prepare it locally, then commit the changes, push...
Yes, You can configure separate environments, you can use the figaro gem only under the section :development in the Gemfile if you want. Another alternative is to use a `.rbenv-vars`...
Yes they should work. You might have some error with passenger configuration. Can you look for error messages from nginx logs?
Looks like you don't have properly configured passenger/nginx. Can you post show your configuration files?