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
Hi, I have installed Decidim on Ubuntu 22.04, using your script. The install went fine, but when I try to reach my domain in the browser I get a '403 Forbidden' mention.
Using Ruby 3.0.5
SSL certificate installed
Passenger 6.0.17
OpenSSL 3.0
When I look in the errog in Nginx I see the following error:
"/home/decidim/decidim-app/public/index.html" is forbidden (13: Permission denied),
This is my decidim.conf file in sites-enabled in /etc/nginx
Hi, I have installed Decidim on Ubuntu 22.04, using your script. The install went fine, but when I try to reach my domain in the browser I get a '403 Forbidden' mention.
Using Ruby 3.0.5
SSL certificate installed
Passenger 6.0.17
OpenSSL 3.0
When I look in the errog in Nginx I see the following error:
"/home/decidim/decidim-app/public/index.html" is forbidden (13: Permission denied),
This is my decidim.conf file in sites-enabled in /etc/nginx
server {
listen 80;
listen [::]:80 ipv6only=on;
listen 443 ssl;
ssl on;
ssl_certificate /etc/nginx/ssl/bundle_xxxxxx.crt;
ssl_certificate_key /etc/nginx/ssl/xxxxx_nl.key;
server_name www.xxxxxx.nl. xxxxxxx.nl;
client_max_body_size 32M;
root /home/decidim/decidim-app/public;
location / {
autoindex on;
}
}
nginx-t says config is ok.
What could be the problem?
The text was updated successfully, but these errors were encountered: