Skip to content
Discussion options

You must be logged in to vote

I decided to put the snippet files into 'appdata'/voidauth/config/nginx/snippets and modify the Nginx Proxy Manager (NPM) Compose with an extra volume bind:

services:
  nginx-pm:
    ...
    volumes:
      ...
      # nginx config code snippets folder, added for i.e. VoidAuth
      - ./config/nginx/snippets:/config/nginx/snippets
    ...

I also modified the VoidAuth Proxy Host configuration in NPM to include the prescribed custom config:

location / {
  include /config/nginx/snippets/proxy.conf;
  proxy_pass $forward_scheme://$server:$port;
}

After which I am able to reach my VoidAuth login page.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Stephan-P
Comment options

Answer selected by Stephan-P
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant