Skip to content

Documentation Request - Nginx Config and PWA #32

@varunpan

Description

@varunpan

Is your feature request related to a problem? Please describe.
I am hosting this from my personal webserver, however i am not get the PWA option on my instance.

Describe the solution you'd like
I would like some clear documentation on how to configure nginx webserver and how to enable PWA for my self-hosted instance.

Additional context
my current ngnix config:


server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    server_name image.*;

    include /config/nginx/ssl.conf;

    client_max_body_size 0;

    location / {

        include /config/nginx/proxy.conf;
        include /config/nginx/resolver.conf;
        set $upstream_app localhost;
        set $upstream_port 3474;
        set $upstream_proto http;
        proxy_pass $upstream_proto://$upstream_app:$upstream_port;

    }

}

Metadata

Metadata

Assignees

No one assigned

    Labels

    help wantedExtra attention is needed

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions