- Registriert
- Apr. 2015
- Beiträge
- 162
ssh -L 3322:127.0.0.1:3306 root@xx.xx.xx.xx
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.
Leider ist das Problem, wenn ich das so mache, ist die komplette Website damit gesichert und nicht nur der eine Ordner "/administrator". Mit Benutzername und Passwort kann man sich problemlos einloggen.server {
listen 80;
server_name ;
root /var/www/html/;
index index.html index.htm index.php;
auth_basic "IP LOGGED";
auth_basic_user_file /etc/nginx/.htpasswd;
location /administrator {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
server {
listen 80;
server_name ;
root /var/www/html/;
index index.html index.htm index.php;
location /administrator {
auth_basic "IP LOGGED";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
Das geht nichtserver {
listen 80;
server_name ;
root /var/www/html/;
index index.html index.htm index.php;
location /administrator
location /admin {
auth_basic "IP LOGGED";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
server {
listen 80;
server_name ;
root /var/www/html/;
index index.html index.htm index.php;
location /admin {
auth_basic "IP LOGGED";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files $uri $uri/ =404;
}
location /administrator {
auth_basic "IP LOGGED";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}