Skip to content

Instantly share code, notes, and snippets.

@taddev
taddev / nginx.conf
Last active February 20, 2025 07:39
Nginx reverse proxy to Exchange 2010/2013
server {
listen 80;
#listen [::]:80;
server_name mail.gwtest.us autodiscover.gwtest.us;
return 301 https://$host$request_uri;
}
server {
listen 443;
#listen [::]:443 ipv6only=on;