Этот сайт содержит небольшие заметки и рецепты, которые вечно забываешь и их приходится гуглить. Поэтому создатель сайта решил их сохранить в какое-то одно место, чтобы иметь быстрый доступ к ним.
1 2 3 4 | # например cherokee
apt-get install cherokee
# или для ubuntu
sudo apt-get install cherokee
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | $HTTP["host"] == "example.com" {
server.document-root = "/path/to/document/root/"
dir-listing.activate = "disable"
url.access-deny = ( "~", ".inc", ".git" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi", ".~", ".pyc", ".py", ".db", ".swp" )
url.rewrite-once = (
"^/favicon\.ico$" => "/s/i/favicon.ico",
)
$HTTP["url"] !~ "^/s/(.*)$" {
proxy.server = (
"" => (
"tornado" => (
"host" => "127.0.0.1",
"port" => 9888
))
)
}
}
|
1 | http_proxy="http://Username:Password@Server:Port/"
|
1 | http_proxy="http://Username:Userpwd@server:ServerPort/" sh winetricks
|