Mainos / Advertisement:

Kaikki käännökset

Siirry navigaatioon Siirry hakuun

Kirjoita alle sen viestin nimi, jonka kaikki käännökset haluat nähdä.

Viesti

Yhteensä 2 käännöstä.

NimiViestin teksti tällä hetkellä
 h English (en)<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>
 h suomi (fi)<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>
Mainos / Advertisement: