Mainos / Advertisement:

Ero sivun ”Translations:Apache2/47/en” versioiden välillä

Kohteesta Taisto
Siirry navigaatioon Siirry hakuun
(Ak: Uusi sivu: <VirtualHost *:80> #*.80 = Responds to all IP-addresses in port 80 ServerAdmin webmaster@localhost #E-mail address of the server administr...)
 
(ei mitään eroa)

Nykyinen versio 28. tammikuuta 2015 kello 20.59

Tietoja viestistä (auta dokumentoinnissa)
Tätä viestiä ei ole dokumentoitu. Jos tiedät missä tai miten tätä viestiä käytetään, voit auttaa muita kääntäjiä lisäämällä kommentteja tähän viestiin.
Viestin määritelmä (Apache2)
<VirtualHost *:80>                            #*.80 = Vastaa kaikille IP-osoitteille portissa 80.
       ServerAdmin webmaster@localhost        #Palvelimen ylläpitäjän sähköpostiosoite
       ServerName example.com                #Palvelimen nimi tai verkko-osoite (Voit käyttää IPv4- ja IPv6-osoitteita)
       ServerAlias www.example.com            #Alidomain, voi olla useita (Voit käyttää IPv4- ja IPv6-osoitteita)
       DocumentRoot /var/www                  #päähakemisto, jossa verkkosivut sijaitsevat
       <Directory />
               Options FollowSymLinks
               AllowOverride None            #Salli konfigurointien yliajamisen (.htaccess) juuri hakemistossa (ei suositella)
       </Directory>
       <Directory /var/www/>
               Options Indexes FollowSymLinks MultiViews
               AllowOverride None            #Salli konfigurointien yliajamisen (.htaccess)
               Order allow,deny              #Salli, estä muut
               allow from all                #Salli kaikkien muodostamisen verkkosivuusi
       </Directory>
 </VirtualHost>
Käännös<VirtualHost *:80>                            #*.80 = Responds to all IP-addresses in port 80
       ServerAdmin webmaster@localhost        #E-mail address of the server administrator
       ServerName example.com                #Server name or network address (You can use IPv4- and IPv6-addresses)
       ServerAlias www.example.com            #Sub domain, you can have several of these (You can use IPv4- and IPv6-addresses)
       DocumentRoot /var/www                  #Main directory where the webpages are located
       <Directory />
               Options FollowSymLinks
               AllowOverride None            #Allows overriding the configurations (.htaccess) in the root directory (not recommended)
       </Directory>
       <Directory /var/www/>
               Options Indexes FollowSymLinks MultiViews
               AllowOverride None            #Allows overriding the configurations (.htaccess)
               Order allow,deny              #Allow, deny others
               allow from all                #Allow everything to form in your web page
       </Directory>
 </VirtualHost>

<VirtualHost *:80> #*.80 = Responds to all IP-addresses in port 80

       ServerAdmin webmaster@localhost        #E-mail address of the server administrator
       ServerName example.com                 #Server name or network address (You can use IPv4- and IPv6-addresses)
       ServerAlias www.example.com            #Sub domain, you can have several of these (You can use IPv4- and IPv6-addresses)
       DocumentRoot /var/www                  #Main directory where the webpages are located
       <Directory />
               Options FollowSymLinks
               AllowOverride None             #Allows overriding the configurations (.htaccess) in the root directory (not recommended)
       </Directory>
       <Directory /var/www/>
               Options Indexes FollowSymLinks MultiViews
               AllowOverride None             #Allows overriding the configurations (.htaccess)
               Order allow,deny               #Allow, deny others
               allow from all                 #Allow everything to form in your web page
       </Directory>
</VirtualHost>
Mainos / Advertisement: