Home
Help
Search
Login
Register
OPNsense Forum
»
Archive
»
23.1 Legacy Series
»
Redirect all HTTP traffic to HTTPS with nginx plugin
« previous
next »
Print
Pages: [
1
]
Author
Topic: Redirect all HTTP traffic to HTTPS with nginx plugin (Read 638 times)
tkn-teamf
Newbie
Posts: 1
Karma: 0
Redirect all HTTP traffic to HTTPS with nginx plugin
«
on:
July 05, 2023, 08:40:20 pm »
My current nginx config (on some odroid) is:
Code:
[Select]
server {
listen 80;
return 301 https://$host$request_uri;
}
The purpose is to redirect any http traffic to https.
How can I do this with OPNsense?
Logged
Print
Pages: [
1
]
« previous
next »
OPNsense Forum
»
Archive
»
23.1 Legacy Series
»
Redirect all HTTP traffic to HTTPS with nginx plugin