Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Hi bofh1337, danke für die Antwort. Leider löst es aber nicht das Problem. Ich kann nach wie vor ohne Internverbindung nicht auf localhost zugreifen.
eth0 Link encap:Ethernet Hardware Adresse 74:d0:2b:e6:cc:90
UP BROADCAST MULTICAST MTU:1500 Metrik:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:19
lo Link encap:Lokale Schleife
inet Adresse:127.0.0.1 Maske:255.0.0.0
inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
UP LOOPBACK RUNNING MTU:65536 Metrik:1
RX packets:4445 errors:0 dropped:0 overruns:0 frame:0
TX packets:4445 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:0
RX bytes:427615 (417.5 KiB) TX bytes:427615 (417.5 KiB)
<VirtualHost umbrella:80>
ServerName umbrella
DocumentRoot /hd_httpdocs
IndexOrderDefault Ascending Name
IndexOptions +FancyIndexing +FoldersFirst
<Directory /hd_httpdocs>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
AccessFileName .htaccess
LogLevel debug
</VirtualHost>
Sehr gerne. Wie genau mach ich das?Dann sollte es eigentlich laufen,- wenn nicht, gibt mir mal bitte die Liste der installierten und aktivierten Apache-Module
Loaded Modules:
core_module (static)
so_module (static)
watchdog_module (static)
http_module (static)
log_config_module (static)
logio_module (static)
version_module (static)
unixd_module (static)
unixd_module (static)
access_compat_module (shared)
actions_module (shared)
alias_module (shared)
auth_basic_module (shared)
authn_core_module (shared)
authn_file_module (shared)
authz_core_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cgi_module (shared)
deflate_module (shared)
dir_module (shared)
env_module (shared)
fastcgi_module (shared)
filter_module (shared)
mime_module (shared)
mpm_prefork_module (shared)
negotiation_module (shared)
php5_module (shared)
rewrite_module (shared)
setenvif_module (shared)
status_module (shared)
sudo nano /etc/hosts
127.0.0.1 www.test.com
127.0.0.1 localhost
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/test
<Directory /var/www/test/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
sudo a2ensite localhost.conf
sudo service apache2 reload