I installed WordOps on Microsoft's WSL, using latest available Ubuntu for that. The domain name seems to be resolving correctly down to the Ubuntu instance. I get the error
"Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org
Please use the reportbug tool to report bugs in the nginx package with Debian. However, check existing bug reports before reporting a new bug.
Thank you for using nginx."
Not just that, but any file in the htdocs directory of the new website responds with either that message or a filenot found error - even for static items like an html page I created in that directory. This must be some sort of nginx configuration issue for the site is my guess, but the site config created by WordOps looks ok to me. I am stymied. Anyone have any thoughts?
the site configuration created by WordOps is as below (note, the root directory is correct for the site):
server {
server_name thirdwp.site www.thirdwp.site;
access_log /var/log/nginx/thirdwp.site.access.log rt_cache;
error_log /var/log/nginx/thirdwp.site.error.log;
root /var/www/thirdwp.site/htdocs;
index index.php index.html index.htm;
include common/php81.conf;
include common/wpcommon-php81.conf;
include common/locations-wo.conf;
include /var/www/thirdwp.site/conf/nginx/*.conf;
}
Any help appreciated in advance!
