Openwrt port forwarding not working
Solution 1:
Regarding to the official documentation from here: https://wiki.openwrt.org/doc/howto/port.forwarding your config section should be:
config 'redirect'
option 'name' 'ssl'
option 'src' 'wan'
option 'proto' 'tcp'
option 'src_dport' '443'
option 'dest_ip' '192.168.1.104'
option 'dest_port' '443'
option 'target' 'DNAT'
option 'dest' 'lan'
But please check, if OpenWRT allow to redirect https (tcp:443) traffic.