{% else-1 %}
Обновить | Подписаться | Поднять тему
Чтобы выполнить действие авторизируйтесь или пройдите регистрацию на сайте.
1.
System * [мошенник] 0.85
[автор] (9 ноя 2014, 11:32) [0/0] [0] [отв] [спам] [под] +1 | -1

Вот у меня есть такой штекер

php_value session.auto_start on
AddDefaultCharset utf-8
DirectoryIndex /index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php


Как его за писать в конфигурациях bit web server в файле lighttpd.conf

Вот сам файл

## Configuration Lighttpd custom by Andi Susilo
## Please be careful this change, can causes the server does not run if the wrong configuration

server.document-root = "/storage/sdcard1/Вход (в карту памяти)/PHP Scripte/Разработка!/localhost"
dir-listing.activate = "enable"
server.errorlog = "/sdcard/wwwconf/server.log"
server.pid-file = "/data/data/com.andi.serverweb/files/lighttpd/tmp/lighttpd.pid"
server.tag = "lighttpd/1.4.29 for Android - BitWebServer"

server.port = 80

index-file.names = ("index.php", "index.html", "index.htm", "home.php","home.html","home.htm"*

# Put your rewrite into url.rewrite-once section, I create example to rewrite drupal and wordpress
url.rewrite-once = (

# Example rewrite for drupal site, change drupalfolder with your drupal site at /sdcard/www/your_drupalfolder
"^/drupalfolder/system/test/(.*)$" => "/drupalfolder/index.php?q=system/test/$1",
"^/drupalfolder/search/node/(.*)$" => "/drupalfolder/index.php?q=search/node/$1",
"^/drupalfolder/([^.?]*)\?(.*)$" => "/drupalfolder/index.php?q=$1&$2",
"^/drupalfolder/([^.?]*)$" => "/drupalfolder/index.php?q=$1",

# Example rewrite for wordpress site, change wordpressfolder with your wordpress site at /sdcard/www/your_wordpressfolder
# Now change the setting in Options->Permalinks to Custom and create your permalink structure.
# Personally I prefer this: http://localhost:port/wordpressfolder/%postname%/
"^/wordpressfolder/(.*)\.(.+)$" => "$0",
"^/wordpressfolder/(.+)/?$" => "/wordpressfolder/index.php/$1",

)


# alias URL to phpmyadmin, you can change it if you want to download phpmyadmin manually
alias.url = ("/phpmyadmin" => "/data/data/com.andi.serverweb/files/phpmyadmin"*

# WARNING: From now on to start php server from here, so do not change the value of bin-path
fastcgi.server = (
".php" =>
(( "host" => "127.0.0.1",
"port" => 9003,
"bin-path" => "/data/data/com.andi.serverweb/files/php/php",
"disable-time" => 0,
"max-procs" => 2,
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "16",
"PHP_FCGI_MAX_REQUESTS" => "1000",
"TMPDIR" => "/data/data/com.andi.serverweb/files/php/tmp"
),
"idle-timeout" => 60,
"bin-copy-environment" => ("PATH", "SHELL", "USER"*,
"broken-scriptfilename" => "enable"*)
)

server.max-request-size = 1000000
server.network-backend = "writev"
server.upload-dirs =( "/data/data/com.andi.serverweb/files/lighttpd/tmp" )

mimetype.use-xattr = "disable"

mimetype.assign = (
".appcache" => "text/cache-manifest",
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postscript",
".torrent" => "application/x-bittorrent",
".dvi" => "application/x-dvi",
".gz" => "application/x-gzip",
".pac" => "application/x-ns-proxy-autoconfig",
".swf" => "application/x-shockwave-flash",
".tar.gz" => "application/x-tgz",
".tgz" => "application/x-tgz",
".tar" => "application/x-tar",
".zip" => "application/zip",
".mp3" => "audio/mpeg",
".m3u" => "audio/x-mpegurl",
".wma" => "audio/x-ms-wma",
".wax" => "audio/x-ms-wax",
".ogg" => "application/ogg",
".wav" => "audio/x-wav",
".gif" => "image/gif",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".png" => "image/png",
".xbm" => "image/x-xbitmap",
".xpm" => "image/x-xpixmap",
".xwd" => "image/x-xwindowdump",
".css" => "text/css",
".html" => "text/html",
".htm" => "text/html",
".js" => "text/javascript",
".asc" => "text/plain",
".c" => "text/plain",
".cpp" => "text/plain",
".log" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".spec" => "text/plain",
".dtd" => "text/xml",
".xml" => "text/xml",
".mpeg" => "video/mpeg",
".mpg" => "video/mpeg",
".mov" => "video/quicktime",
".qt" => "video/quicktime",
".avi" => "video/x-msvideo",
".asf" => "video/x-ms-asf",
".asx" => "video/x-ms-asf",
".wmv" => "video/x-ms-wmv",
".bz2" => "application/x-bzip",
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar",
".odt" => "application/vnd.oasis.opendocument.text",
".ods" => "application/vnd.oasis.opendocument.spreadsheet",
".odp" => "application/vnd.oasis.opendocument.presentation",
".odg" => "application/vnd.oasis.opendocument.graphics",
".odc" => "application/vnd.oasis.opendocument.chart",
".odf" => "application/vnd.oasis.opendocument.formula",
".odi" => "application/vnd.oasis.opendocument.image",
".odm" => "application/vnd.oasis.opendocument.text-master",
".ott" => "application/vnd.oasis.opendocument.text-template",
".ots" => "application/vnd.oasis.opendocument.spreadsheet-template",
".otp" => "application/vnd.oasis.opendocument.presentation-template",
".otg" => "application/vnd.oasis.opendocument.graphics-template",
".otc" => "application/vnd.oasis.opendocument.chart-template",
".otf" => "application/vnd.oasis.opendocument.formula-template",
".oti" => "application/vnd.oasis.opendocument.image-template",
".oth" => "application/vnd.oasis.opendocument.text-web",
"" => "application/octet-stream",
)


server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_alias",
"mod_access",
"mod_auth",
"mod_status",
"mod_simple_vhost",
"mod_evhost",
"mod_userdir",
"mod_secdownload",
"mod_fastcgi",
"mod_proxy",
"mod_cgi",
"mod_ssi",
"mod_compress",
"mod_usertrack",
"mod_expire",
"mod_rrdtool",
"mod_accesslog"
)

  • 1 из 1
Чтобы писать сообщения авторизируйтесь или пройдите регистрацию на сайте.
Подписаны: 1
Скачать тему | Файлы темы | Фильтр сообщений