I am trying to rerwrite any sub domains outside of an approved list i.e. (dev,test,home).domain.com
here is what I am working with now:
#rewrite all sub domains
if ($host ~* "^([^.]+(\.[^.]+)*)\.domain.com$"){
rewrite ^(.*)$ http://domain.com$1 permanent;
break;
}
the problem is it rewrites all sub domains. I have a solution in apache but I am having issues converting it. apache version:
RewriteCond %{HTTP_HOST} !^(dev|test|local\.blog)\.domain\.me$ [NC]
Updates:
server {
listen 80;
server_name *.domain.com domain.com;
root /srv/www/www.domain.com;
access_log /srv/logs/www_domain.com.access;
error_log /srv/logs/www_domain.com.error error;
error_page 400 401 402 403 404 500 502 503 504 /error.htm;
location /error.htm {
internal;
}
# ------------------------------------------------------------------------
# remove all sub domains and www
if ($host !~* (dev|test|prod)\.domain\.com) {
rewrite ^ http://domain.com$request_uri permanent;
}
# ------------------------------------------------------------------------
location / {
index index.html index.php index.htm;
location ~* ^.*\.php$ {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
# ------------------------------------------------------------------------
# serve favicon
location = /favicon.ico {
log_not_found off;
access_log off;
}
# ------------------------------------------------------------------------
# process robots.txt
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# ------------------------------------------------------------------------
# serve static files directly
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires max;
}
# ------------------------------------------------------------------------
# block access to .ht files
location ~ /\.ht {
deny all;
}
# ------------------------------------------------------------------------
# short cuts
if ($uri ~* "/login") {
rewrite ^/login(/.*)? /wp-admin$1;
}
# ------------------------------------------------------------------------
# BEGIN W3TC Browser Cache
gzip on;
gzip_types text/css application/x-javascript text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;
location ~ \.(css|js)$ {
expires 31536000s;
add_header Pragma "public";
add_header Cache-Control "max-age=31536000, public, must-revalidate, proxy-revalidate";
add_header X-Powered-By "W3 Total Cache/0.9.2.3";
}
location ~ \.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml)$ {
expires 180s;
add_header Pragma "public";
add_header Cache-Control "max-age=180, public, must-revalidate, proxy-revalidate";
add_header X-Powered-By "W3 Total Cache/0.9.2.3";
}
location ~ \.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|swf|tar|tif|tiff|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$ {
expires 31536000s;
add_header Pragma "public";
add_header Cache-Control "max-age=31536000, public, must-revalidate, proxy-revalidate";
add_header X-Powered-By "W3 Total Cache/0.9.2.3";
}
# END W3TC Browser Cache
# BEGIN W3TC Skip 404 error handling by WordPress for static files
if (-f $request_filename) {
break;
}
if (-d $request_filename) {
break;
}
if ($request_uri ~ "(robots\.txt|sitemap(_index|[0-9]+)?\.xml(\.gz)?)") {
break;
}
if ($request_uri ~* \.(css|js|html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|swf|tar|tif|tiff|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$) {
return 404;
}
# END W3TC Skip 404 error handling by WordPress for static files
# ------------------------------------------------------------------------
}
Check nginx documentation how to convert apache rewrite rules to nginx.
based on @AlexD reply I have updated my solution. if you have any other suggestions fellow geeks, let me know.
this is the default website:
Looks like you must use negative look-behind:
after locating a killer tool : http://www.anilcetin.com/convert-apache-htaccess-to-nginx/ I was able to rebuild my nginx vhost config to work correctly, however, I am open to suggestions , modifications. This is a multi host server, and individual host file in sites-available for each host
default server configuration: