b26f7ec9b6
Now we have a command to force redirections to www or non-www.
10 lines
189 B
Text
10 lines
189 B
Text
# WebinolyWWWredirectStart - Force WWW or non-WWW redirect
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
#server_name;
|
|
|
|
include common/headers-http.conf;
|
|
#return 301;
|
|
}
|
|
# WebinolyWWWredirectEnd
|