-
-
Notifications
You must be signed in to change notification settings - Fork 127
Open
Labels
help wantedExtra attention is neededExtra attention is needed
Description
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;
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is needed