Replies: 1 comment
-
Hi You can use nginx server {
listen 80 default_server;
server_name example.net www.example.net;
...
} you can also use wildcards if you want to restrict it only for certain subdomains etc server {
listen 80;
server_name *.example.net *.anotherdomain.com;
...
} For quick tests you can add your test domain/subdomain to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I want to test the multisite feature. I have found the settings in Settings > Sites and have already created a new entry for a new site. So far so good. But how do I configure nginx now? Do I create a new host.conf and simply point the root to the directory of the vvveb installation? Or is there something else to consider?
Do you have any tips?
Beta Was this translation helpful? Give feedback.
All reactions