ฉันได้อัปเดตคำถามตามคำแนะนำจาก @Gerard H. Pille ด้านล่าง
การตั้งค่านี้เป็นครั้งแรก ฉันVirtualbox
ทำงานUbuntu 18.04
บนWin 10
โฮสต์สำหรับwordpress
โครงการ
โฟลเดอร์ที่แชร์ของฉันถูกเมาท์/media/sw_wp
และทำงานอยู่
โฟลเดอร์โครงการของฉันมีหนึ่งโครงการเท่านั้นที่ /media/wp_sf/myproj
ฉันใช้nginx
configนี้จากที่นี่ :
# 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;
}
}
เราได้สร้างการเชื่อมโยงสัญลักษณ์จากsites-available
ไปและฉันสามารถดูการเชื่อมโยงโดยใช้sites-enabled
ls
/var/www/html/myproj
มีการติดตั้ง wordpress ของฉัน
ฉันสร้าง symlink จากโฟลเดอร์แชร์เพื่อให้ปรากฏเป็น:
/var/www/html/myproj
ทุกอย่างอื่นในแขกคือ ubuntu + php 7.2 + nginx + mysql
เมื่อฉันดูโครงการที่ฉันได้รับ:
This site can’t be reached
myproj.com.au refused to connect.
ตามคำแนะนำด้านล่างผลลัพธ์ของnslookup myproj.com.au
คือ
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
ฉันสามารถ ping แขกจากDOS window
ในโฮสต์และฉันได้รับการตอบสนองดังนั้นสภาพแวดล้อมจึงตั้งค่าไว้อย่างถูกต้อง
ping myproj.com.au
ฉันพลาดอะไรไป ขอบคุณ
/media/.wp_sf
คือตำแหน่งที่Virtualbox
เมานต์โฟลเดอร์แชร์ของโฮสต์ Ubuntu ไม่อนุญาตให้ฉันเชื่อมโยง/var/www
ไปยัง/media/sf_wp
โฟลเดอร์ มีวิธีอื่นในการตั้งค่านี้หรือไม่?
/media/sf_wp
ไม่มีชื่อโฟลเดอร์ที่ควรจะเป็นเสมอ แต่ดูการอัปเดตของฉันตามคำแนะนำของคุณด้านบน ขอบคุณสำหรับการช่วยเหลือ.