Nginx Subdomain Problem
- by user292299
i can't access my subdomain on localhost.
my localdomain is localhost.dev and it's work.but i want to auto subdomain for php script (username.localhost.dev)
i try this
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
access_log /var/www/access.log;
error_log /var/www/error.log;
root /var/www;
…