Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
koush
-
That worked. Perfect. Thank You!! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have scrypted and nginx running is separate containers. Trying to reverse proxy to scrypted but it just gives a 404 error. What am I doing wrong?
server {
server_name scrypted.gsdhm.net;
listen 80;
access_log /var/log/nginx/access.log;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name scrypted.gsdhm.net;
}
Beta Was this translation helpful? Give feedback.
All reactions