Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Oxima69

#16
Development and Code Review / Re: nginx - HSTS
April 01, 2019, 09:59:25 AM
maybe in this context.
there is a little cosmetic error.

when activating the security headers.
you have 2 entries of

proxy_hide_header Strict-Transport-Security;
#17
Development and Code Review / Re: nginx - HSTS
April 01, 2019, 09:52:37 AM
Great,
it works.
#18
Development and Code Review / nginx - HSTS
March 29, 2019, 09:27:07 AM
Hi,

Since version 1.8
QuoteHSTS not sent automatically anymore if HTTP over TLS is configured (still available via security header)

I guess there's a little problem here.

after activation via security header the nginx.conf has the following entry

add_header Strict-Transport-Security "15768000" always;

max-age is missing ?

it should be

add_header Strict-Transport-Security "max-age=15768000" always;

Or do I get something wrong......
#19
Yes, I can recreate it.
thanks
#20
Hi,

in my global error log, there is every minute a signal process started entry.
what could be the cause ?.
thanks.

OPNsense 19.1.4 / nginx 1.9
#21
German - Deutsch / Re: Port Umleitung in DMZ (smtp)
December 17, 2018, 08:38:22 PM
Nabend, ich verstehe es so.

WAN IP Firewall: QSC mit 87.x.x.x
LAN IP Firewall:  192.168.20.199
DMZ IP Firewall: 192.168.30.199
Proxmox MG IP:  192.168.30.254 (vom Wan empfängt es über 25 und leitet über 25 an den Mailserver
(LAN) weiter, intern horcht die PMG zusätzlich auf Port 26)
Mailserver IP:      192.168.20.90 (horcht auf Port 25) und leitet externe Mails ... über Port 26 der PMG. (als Relay) ins Internet weiter.

Also für mich LAN --> DMZ  NAT 192.168.30.254:25  auf 192.168.30.254:26. Da du ja an deinem internen Mailserver nichts verändert möchtest.

Gruß Andreas
#22
Development and Code Review / Re: nginx plugin
November 13, 2018, 09:03:01 AM
@Fabian Great, thanks a lot. I have found it

https://github.com/opnsense/plugins/pull/930

Great work

regards
Andreas
#23
Development and Code Review / Re: nginx plugin
November 12, 2018, 12:43:46 PM
Hi guys, hi @Fabian,
I am looking for a way to block or unblock IP´s /IP-ranges in the location block.

like
location / {
  # block one workstation
  deny    192.168.1.1;
  # allow anyone in 192.168.1.0/24
  allow   192.168.1.0/24;
  # drop rest of the world
  deny    all;
}


Is it already possible or is there another solution?

Best regards,
Andreas