denis.no Report : Visit Site


  • Server:Terok Nor...

    The main IP address: 188.226.240.179,Your server Netherlands,Amsterdam ISP:Digital Ocean Inc.  TLD:no CountryCode:NL

    The description :skip to content denis brækhus mostly harmless munin 2.0 on centos7 with nginx and fastcgi as the various bits of official munin documentation seems to be in a limbo state where the current stable vers...

    This report updates in 17-Jul-2018

Technical data of the denis.no


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host denis.no. Currently, hosted in Netherlands and its service provider is Digital Ocean Inc. .

Latitude: 52.374031066895
Longitude: 4.8896899223328
Country: Netherlands (NL)
City: Amsterdam
Region: Noord-Holland
ISP: Digital Ocean Inc.

the related websites

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Terok Nor containing the details of what the browser wants and will accept back from the web server.

X-XSS-Protection:1; mode=block
Content-Length:18749
X-Varnish:1160667 1160663
X-Content-Type-Options:nosniff
Content-Security-Policy:default-src 'none'; connect-src 'self'; font-src data: https://fonts.gstatic.com; frame-src 'self'; img-src 'self' data: https://secure.gravatar.com; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com/
Content-Encoding:gzip
Accept-Ranges:bytes
Age:143
Strict-Transport-Security:max-age=31536000; includeSubdomains;
Vary:Accept-Encoding
Server:Terok Nor
Connection:keep-alive
Via:1.1 varnish (Varnish/5.2)
Link:; rel="https://api.w.org/"
Date:Mon, 16 Jul 2018 18:03:53 GMT
X-Frame-Options:deny
Referrer-Policy:no-referrer
Content-Type:text/html; charset=UTF-8
grace:none

DNS

soa:ns1.hyp.net. hostmaster.domeneshop.no. 1531353218 14400 3600 777600 3600
txt:"kolab-verify=a3bbb8496c49c0cb47fcefe70777bec9"
"v=spf1 mx mx:mykolab.com mx:kolabnow.com -all"
"keybase-site-verification=b0roJkB5cL2s0-IjmYaXMk929sCJ6MqmrNeMi3lvKp0"
ns:ns1.hyp.net.
ns3.hyp.net.
ns2.hyp.net.
ipv4:IP:188.226.240.179
ASN:14061
OWNER:DIGITALOCEAN-ASN - DigitalOcean, LLC, US
Country:EU
mx:MX preference = 10, mail exchanger = mx01.kolabnow.com.
MX preference = 20, mail exchanger = mx02.kolabnow.com.

HtmlToText

skip to content denis brækhus mostly harmless munin 2.0 on centos7 with nginx and fastcgi as the various bits of official munin documentation seems to be in a limbo state where the current stable version (2.0.x) isn’t very well handled between the old and the new site, finding a good howto on setting up munin with fastcgi and nginx wasn’t as easy as it should have been. there are articles (notably https://www.webfoobar.com/node/48 ) that are a bit on the overly complicated side, as it turns out, there exists a package called munin-nginx which simplifies things a lot. so, assuming you are going to run munin without a url prefix (https://munin.yoursite.com/) setting up munin to use cgi for graphs and html turns out to be quite easy. the below steps were successfully performed using centos linux release 7.2.1511 , with munin-2.0.25-11 and munin-nginx-2.0.25-11 . sudo yum -y install munin munin-nginx nginx sudo sed -i 's/\(.*\)_strategy.*/\1_strategy cgi/;s/#cgiurl_graph/cgiurl_graph/' /etc/munin/munin.conf for svc in munin-fcgi-graph munin-fcgi-html ; do sudo service $svc stop ; sudo chkconfig $svc on ; sudo service $svc start htpasswd -c /etc/nginx/.htpasswd-munin-users munin the nginx config you need is: server { listen 80; # ipv4 listen [::]:80 ipv6only=on; # ipv6 server_name munin.yoursite.com; ## logs log_not_found off; error_log /var/log/nginx/munin.yoursite.com_error_log error; access_log off; location / { fastcgi_split_path_info ^(/)(.*); fastcgi_param path_info $fastcgi_path_info; fastcgi_param script_filename /var/www/cgi-bin/munin-cgi-html; include fastcgi_params; fastcgi_pass unix:/var/run/munin/fcgi-munin-html.sock; auth_basic "restricted"; auth_basic_user_file /etc/nginx/.htpasswd-munin-users; # serve static files location /static/ { alias /etc/munin/static/; expires 30d; } # munin cgi graph location ^~ /munin-cgi/munin-cgi-graph/ { access_log off; fastcgi_split_path_info ^(/munin-cgi/munin-cgi-graph)(.*); fastcgi_param path_info $fastcgi_path_info; fastcgi_param script_filename /var/www/cgi-bin/munin-cgi-graph; include fastcgi_params; fastcgi_pass unix:/var/run/munin/fcgi-munin-graph.sock; # bypass cache. fastcgi_cache_bypass 0; fastcgi_no_cache 0; expires epoch; } } } then restart nginx, and you should be able to use munin with cgi-generated graphs and html pages: sudo service nginx restart author denis posted on july 13, 2016 categories uncategorized iterm2 productivity if you’re like me, you spend most of your time in the terminal. on osx that means iterm2 for me. i won’t go into details on how many orders of magnitude better iterm2 is than the default terminal app, because most likely you’re already familiar with it. update 2018, the following is not longer true, and personally i’ve switched back to stable releases of iterm2. what you might not know is that what is considered the stable version of iterm, is a bit like the stable version of debian. it’s very conservatively updated, and most features take quite a bit of time to trickle down into a major release. so after i discovered that the nightly builds are relatively stable i switched, and have not looked back. yes granted the updates keep rolling in, but as i’ll get to, using tmux for window arrangement means this doesn’t really bother me. so go get the nightly build now! one of the best features of iterm2 is the tmux integration. what it enables is a way for iterm2 to communicate with tmux via tmux’ “control mode”. basically you start an iterm window and enter : tmux -cc which will open a new iterm window linked with tmux. so any iterm session operations (opening a new tab, a new window or a split) will be handed off to tmux. if you then were to quit iterm, or close the window, you could easily get your complete window arrangement back by doing tmux -cc attach . this is indeed very handy. so now we have pretty persistent window arrangements, which will give you the opportunity to over-indulge on tabs/splits/windows etc. now we apply some order to the mess we inevitably will create. iterm has two cool features that will enable quick navigation of your sessions. the first one is badges . i’ve found that i like to set custom badges instead of relying on automatically set badges. so, first i set the badge options printf "\e]1337;setbadgeformat=%s\a" $(echo -n "\(user.mybadge)" | base64) and then define a bash function: setbadge() { printf "\e]1337;setuservar=mybadge=%s\a" $(echo $1 | base64); } now we can easily set badges in tabs, by typing: setbadge badgename the second feature that ties nicely into this is session search. open with cmd+shift+o and you can quickly search and switch to the tab/window you like. there is also tab exposé cmd+alt+e but it’s slower. there are tons of other ways iterm2 can improve your everyday terminal life, i just found this to be a very handy addition to my toolbox. author denis posted on may 7, 2015 may 11, 2018 categories uncategorized provisioning vagrant with salt vagrant sports out of the box integration with saltstack, which works very well with minimum effort. however under the hood the default way this integration works is via a 4000-line bash script that bootstraps saltstack on the vm. this would all be well and good, however, even if you were to pre-install the salt-call and salt-minion binaries onto your vagrantbox, the salt-integration uses the same bash-script to install the configuration provided in the vagrantfile. so it has come to this.. i don’t really want this in my workflow. and i suspect any heavy saltstack users might want to skip this aswell. i found a way, that was not completely obvious, to make the salt-integration work as quick and painless as i wanted in the masterless mode: create a vagrantbox (in my case i use packer with a set of templates ), with the salt-binaries pre-installed. make sure the salt-minion daemon is disabled. overwrite the default minion config with the contents “file_client: local” (and of course any other configuration you require) this way you do not have to use the “ minion_config ” setting in your vagrantfile, and the salt provisioner plugin will happily skip the bootstrapping script. you could always check the saltstack installation-script for the packer-template for reference. you can now use the following setup in your vagrantfile: config.vm.synced_folder "salt/roots/", "/srv/salt/" config.vm.provision :salt do |salt| salt.run_highstate = true end in salt/roots/ place your top.sls which could look something like this: base: '*': - default which would then execute the salt/roots/default/init.sls state. author denis posted on may 5, 2014 categories uncategorized media services i thought i’d write a little summary on current media services i use, and why. i have mostly stopped buying music pressed on plastic discs, and the amount of movies i buy on-disc has also gone down. however that does not mean i don’t pay for my entertainment. well on to the services. music spotify i used to use spotify actively, mainly due to their very good selection of edm (electronic dance music) and ios-app, which has enabled me to completely stop syncing music from my computer. i was a premium subscriber for over a year, and the service (which cost around the price of 1 cd per month) was awesome. i used spotify apps everywhere; iphone, ipad, mac, linux (still a shamefully shoddy version though), and on squeezebox. in addition to edm, spotify also features a more than good enough selection of “kid friendly” norwegian music. when i checked out rdio though i moved on.. rdio a few annoyances with the spotify ios app, and a constantly hopeless experience on linux made me very ripe for a migration when i was introduced to rdio. rdio is a very similar service to spotify, it generally has a comparable selection of music to stream, has about the same quality and cost the same for a mobile-enabled subscription. where rdio differs is firstly in the quality of its apps. if you are on desktop, you can just use a normal web-browser to

URL analysis for denis.no


https://denis.no/tag/osx/
https://denis.no/2015/05/iterm2-productivity/
https://denis.no/category/gadgets/
https://denis.no/tag/linux/
https://denis.no/2011/02/site-moved/
https://denis.no/tag/blog/
https://denis.no/tag/mp3fs/
https://denis.no/category/floss/
https://denis.no/category/floss/fedora/
https://denis.no/tag/drupal/
https://denis.no/2016/07/munin-2-0-on-centos7-with-nginx-and-fastcgi/
https://denis.no/tag/flac/
https://denis.no/2009/07/why-i-almost-didnt-get-an-iphone/
http://denis.no/wp-content/uploads/2013/08/bandcamp_logo.png
https://denis.no/category/apple/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.udenis.com
  • www.7denis.com
  • www.hdenis.com
  • www.kdenis.com
  • www.jdenis.com
  • www.idenis.com
  • www.8denis.com
  • www.ydenis.com
  • www.denisebc.com
  • www.denisebc.com
  • www.denis3bc.com
  • www.deniswbc.com
  • www.denissbc.com
  • www.denis#bc.com
  • www.denisdbc.com
  • www.denisfbc.com
  • www.denis&bc.com
  • www.denisrbc.com
  • www.urlw4ebc.com
  • www.denis4bc.com
  • www.denisc.com
  • www.denisbc.com
  • www.denisvc.com
  • www.denisvbc.com
  • www.denisvc.com
  • www.denis c.com
  • www.denis bc.com
  • www.denis c.com
  • www.denisgc.com
  • www.denisgbc.com
  • www.denisgc.com
  • www.denisjc.com
  • www.denisjbc.com
  • www.denisjc.com
  • www.denisnc.com
  • www.denisnbc.com
  • www.denisnc.com
  • www.denishc.com
  • www.denishbc.com
  • www.denishc.com
  • www.denis.com
  • www.denisc.com
  • www.denisx.com
  • www.denisxc.com
  • www.denisx.com
  • www.denisf.com
  • www.denisfc.com
  • www.denisf.com
  • www.denisv.com
  • www.denisvc.com
  • www.denisv.com
  • www.denisd.com
  • www.denisdc.com
  • www.denisd.com
  • www.deniscb.com
  • www.deniscom
  • www.denis..com
  • www.denis/com
  • www.denis/.com
  • www.denis./com
  • www.denisncom
  • www.denisn.com
  • www.denis.ncom
  • www.denis;com
  • www.denis;.com
  • www.denis.;com
  • www.denislcom
  • www.denisl.com
  • www.denis.lcom
  • www.denis com
  • www.denis .com
  • www.denis. com
  • www.denis,com
  • www.denis,.com
  • www.denis.,com
  • www.denismcom
  • www.denism.com
  • www.denis.mcom
  • www.denis.ccom
  • www.denis.om
  • www.denis.ccom
  • www.denis.xom
  • www.denis.xcom
  • www.denis.cxom
  • www.denis.fom
  • www.denis.fcom
  • www.denis.cfom
  • www.denis.vom
  • www.denis.vcom
  • www.denis.cvom
  • www.denis.dom
  • www.denis.dcom
  • www.denis.cdom
  • www.denisc.om
  • www.denis.cm
  • www.denis.coom
  • www.denis.cpm
  • www.denis.cpom
  • www.denis.copm
  • www.denis.cim
  • www.denis.ciom
  • www.denis.coim
  • www.denis.ckm
  • www.denis.ckom
  • www.denis.cokm
  • www.denis.clm
  • www.denis.clom
  • www.denis.colm
  • www.denis.c0m
  • www.denis.c0om
  • www.denis.co0m
  • www.denis.c:m
  • www.denis.c:om
  • www.denis.co:m
  • www.denis.c9m
  • www.denis.c9om
  • www.denis.co9m
  • www.denis.ocm
  • www.denis.co
  • denis.nom
  • www.denis.con
  • www.denis.conm
  • denis.non
  • www.denis.col
  • www.denis.colm
  • denis.nol
  • www.denis.co
  • www.denis.co m
  • denis.no
  • www.denis.cok
  • www.denis.cokm
  • denis.nok
  • www.denis.co,
  • www.denis.co,m
  • denis.no,
  • www.denis.coj
  • www.denis.cojm
  • denis.noj
  • www.denis.cmo
Show All Mistakes Hide All Mistakes