Nginx Wordpress-Konfigurationsproblem auf Ubuntu Guest und Virtualbox
Ich habe die Frage basierend auf dem Vorschlag von @Gerard H. Pille unten aktualisiert.
Zum ersten Mal einrichten. Ich habe Virtualbox
laufen Ubuntu 18.04
auf einem Win 10
für einen Host - wordpress
Projekt.
Mein freigegebener Ordner ist eingebunden /media/sw_wp
und funktioniert
Mein Projektordner enthält nur ein Projekt unter /media/wp_sf/myproj
Ich verwende diese nginx
Konfiguration von hier aus :
# Upstream to abstract backend connection(s) for php upstream php { server unix:/tmp/php-cgi.socket; server 127.0.0.1:9000; } server { ## Your website name goes here. server_name myproj.com.au; ## Your only path reference. root /var/www/html/myproj; ## This should be in your http block and if it is, it's not needed here. index index.php; location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } location / { # This is cool because no php is touched for static content. # include the "?$args" part so non-default permalinks doesn't break when using query string try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini include fastcgi.conf; fastcgi_intercept_errors on; fastcgi_pass php; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { expires max; log_not_found off; } }
Ich habe den symbolischen Link von sites-available
bis erstellt sites-enabled
und kann den Link mit sehen ls
.
/var/www/html/myproj
enthält meine WordPress-Installation.
Ich habe einen Symlink aus dem Freigabeordner erstellt, sodass er jetzt wie folgt angezeigt wird:
/var/www/html/myproj
Alles andere im Gast ist ubuntu + php 7.2 + nginx + mysql
Wenn ich das Projekt durchsuche, bekomme ich:
This site can’t be reached myproj.com.au refused to connect.
Auf Anregung unter dem Ergebnis von nslookup myproj.com.au
IS
Server 127.0.0.53 Server Address 127.0.0.53#53 Non-authoritative answer: Name: myproj.com.au Address: 52.64.... // An IP I do not recognise
Ich kann den Gast über einen Ping DOS window
an den Host senden und erhalte eine Antwort. Damit ist die Umgebung korrekt eingerichtet.
ping myproj.com.au
Was habe ich vermisst? Vielen Dank.
0 Antworten auf die Frage
Verwandte Probleme
-
9
Was ist der Unterschied zwischen den Befehlen "su -s" und "sudo -s"?
-
4
Gutes freies Ubuntu Server-VMWare-Image benötigt
-
8
Laptop Standby unter Linux / Ubuntu
-
4
Was sind die Unterschiede zwischen den großen Linux-Distributionen? Werde ich es merken
-
1
Wie kann ich von Ubuntu aus über das Netzwerk auf Windows Vista-Drucker zugreifen?
-
2
Begrenzung der CPU-Auslastung für Flash in Firefox?
-
2
Wie kann ich mein Mikrofon unter Debian GNOME zum Laufen bringen?
-
2
Conky-Setups - Beispiele / Ideen?
-
3
Was sind die Unterschiede zwischen Linux Window Managern?
-
3
Kann ich Microsoft Office 2007 unter Ubuntu ausführen?