Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

You are not authorized to execute this action Invalid signature. #6343

Open
Xeyk opened this issue Oct 6, 2022 · 0 comments
Open

You are not authorized to execute this action Invalid signature. #6343

Xeyk opened this issue Oct 6, 2022 · 0 comments

Comments

@Xeyk
Copy link

Xeyk commented Oct 6, 2022

Hello! I am getting this error when using email verification.

You are not authorized to execute this action
Invalid signature.

I set up Monica using Docker, and I have an Nginx reverse proxy to make it internet accessible.

Here are some environment variables that I feel might be relevant:

APP_ENV=production
APP_URL=https://crm.mysite.com
APP_TRUSTED_PROXIES=*
APP_DISABLE_SIGNUP=false
APP_SIGNUP_DOUBLE_OPTIN=true

Here is my Nginx reverse proxy:

server {
    listen 443 ssl;
    server_name crm.mysite.com;
    location / {
       proxy_pass http://localhost:8080;
       proxy_set_header Host $http_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;
    }
    ssl_certificate /etc/nginx/ssl/mysite.com/fullchain.pem;
    ssl_certificate_key /etc/nginx/ssl/mysite.com/privkey.pem;
}

As a note, the site works perfectly locally and remotely with my admin account that I created during initial setup. The one and only issue is with email verification.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant