Arhīvs par "Web serveri (Apache2)" kategorija

Apache autostart

Posted by: admin at 11 pirmdiena 8., 2008

Sākuma un restart Apache serveris ir konfigurēta, lai sāktu automātiski.
Serveris ir iepriekš noteikti šādi.
 # cd /usr/local/etc/rc.d
# cp /usr/local/apache2/bin/apachectl /usr/local/etc/rc.d/apache.sh
# chmod 0755 /usr/local/etc/rc.d/apache.sh 
Tā ir, apachectl start sākt ar to pēdējā laikā ir šādi.
/etc/rc.local
 # Start Apache
/usr/local/apache2/bin/apachectl start 
apachectl nodod, izmantojot, ja jūs nezināt, kā uzstādīt dažādu versiju un izskatās šādos veidā.
 # which apachectl 

Iesniegts saskaņā ar Web servera (Apache2) |

Nav komentāru »

META tag charset garbled un būtu jāprecizē

Posted by: admin at 11 pirmdiena 5., 2008

Iepriekšējā versijā Apache pēc noklusējuma AddDefaultCharset direktīvai "ISO-8859-1 (Latin-Eiropas valodas, franču, vācu)" ir precizēts.
Apache2.2 vēlāk, AddDefaultCharset noklusējuma šīs direktīvas nav.
httpd.conf un nosaka.
httpd.conf parasti atrodas zemāk.
 /usr/local/apache2/conf 
Vai
 /usr/local/etc/apache2 

httpd.conf
 AddDefaultCharset  off 
Tomēr šajā gadījumā, šādus lapās visus charset jānorāda.
 <META http-equiv=Content-Type content="text/html; charset=Shift_JIS"> 

Viss saturs ir tāds pats rakstzīmju kodēšanas (charset) charset varat arī norādīt sekojošo.
httpd.conf
 AddDefaultCharset  EUC-JP 

Kad esat beidzis ir noteikt, Apache restartēt.
 # /usr/local/apache2/bin/apachectl restart 
apachectl būs iziet cauri, ja jūs nezināt, kā uzstādīt dažādu versiju un izskatās šādos veidā.
 # which apachectl 

Iesniegts saskaņā ar Web servera (Apache2) |

Nav komentāru »

Nerādīt satura direktorija

Posted by: admin at 11 pirmdiena 5., 2008

Ja ievadāt direktorija nosaukumu uz Jūsu pārlūkprogrammas adreses laukā index.html / index.php / index.cgi ja index.html / index.php / index.cgi nevarat index.html / index.php / index.cgi šo tēmu, kā izvairīties no tām un vēl iepazīties ar lietu sarakstu.
Google uz index of Ja jūs meklējat, jūs saņemsiet to, kas分RI.
httpd.conf un nosaka.
httpd.conf parasti atrodas zemāk.
 /usr/local/apache2/conf 
Vai
 /usr/local/etc/apache2 

httpd.conf
 Options  Indexes  FollowSymLinks 
Indexes noņemt
 Options FollowSymLinks 

Kad esat beidzis ir noteikt, Apache
 # /usr/local/apache2/bin/apachectl restart 
apachectl būs iziet cauri, ja jūs nezināt, kā uzstādīt dažādu versiju un izskatās šādos veidā.
 # which apachectl 

Iesniegts saskaņā ar Web servera (Apache2) |

Nav komentāru »

Konfigurēta izmantot CGI

Posted by: admin at 11 pirmdiena 5., 2008

httpd.conf un nosaka.
httpd.conf parasti atrodas zemāk.
 /usr/local/apache2/conf 
Vai
 /usr/local/etc/apache2 

Komentāri no aizzīme (#), izņemiet
httpd.conf
 AddHandler cgi-script .cgi 

Options mainīt Direktīvu
httpd.conf
 <Directory />
     Options ExecCGI FollowSymLinks Includes MultiViews 
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory> 

Iesniegts saskaņā ar Web servera (Apache2) |

Nav komentāru »

URL, no "~" (tilde), lai likvidētu

Posted by: admin at 11 pirmdiena 5., 2008

httpd.conf un nosaka.
httpd.conf parasti atrodas zemāk.
 /usr/local/apache2/conf 
Vai
 /usr/local/etc/apache2 

httpd.conf
 Alias / USERNAME / "/home/ USERNAME /public_html/"
<Directory "/home/ USERNAME /public_html">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory> 
Directory šajā direktīvā ir piemērs. Lūdzu, nomainiet, ja nepieciešams.

Iesniegts saskaņā ar Web servera (Apache2) |

Nav komentāru »