Rápido y sencillo
https://www.realtimeregister.com/page/whois_check.php?domein=mojon.es
Rápido y sencillo
https://www.realtimeregister.com/page/whois_check.php?domein=mojon.es
Como montar un proxy a través de un servidor en el que tenemos ssh:
|
1 2 |
ssh -CND 9999 usuario@servidor.com
chromium-browser --proxy-server="socks5://localhost:9999" |
|
1 |
openssl req -new -x509 -nodes -out server.crt -keyout server.key |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!--[if lte IE 8]>
<script type="text/javascript">
{literal}
$(document).ready(function(){
var openedS2 = false;
$('select#virtual_machine_template_id')
.mouseover(function(){
$(this).data("origWidthS2", $(this).css("width")).css("cssText", "width: auto !important").prev().css('display', 'none');
})
.click(function(){
openedS2 = true;
})
.mouseout(function(){
if(!openedS2){
$(this).css("cssText", 'width: ' + ( $(this).data("origWidthS2") + 14 ) + ' !important').prev().css('display', '');
}
})
.blur(function(){
$(this).css("cssText", 'width: ' + ( $(this).data("origWidthS2") + 14 ) + ' !important').prev().css('display', '');
openedS2 = false;
})
.change(function(){
$(this).css("cssText", 'width: ' + ( $(this).data("origWidthS2") + 14 ) + ' !important').prev().css('display', '');
openedS2 = false;
});
});
{/literal}
</script>
<![endif]--> |
Configuración del virtualhost de apache
|
1 2 3 |
# ASPEN
WSGIScriptAlias / "/etc/apache2/aspen.wsgi"
SetEnv aspen.root "/var/www/dominio.com" |
Fichero wsgi (/etc/apache2/aspen.wsgi)
|
1 2 3 4 5 6 |
from aspen.website import Website
def application(environ, start_response):
DOCUMENT_ROOT = environ['aspen.root']
application_website = Website([DOCUMENT_ROOT])
return application_website(environ, start_response) |