Created
February 25, 2016 17:18
-
-
Save knowlet/993f37700263566e9503 to your computer and use it in GitHub Desktop.
Easy config file to use folder as subdomain, just put it in /etc/nginx/conf.d/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
root /var/www/html/$subdomain; | |
index index.php index.html index.htm; | |
server_name ~^(?<subdomain>.+).knowlet.me$; | |
location / { | |
try_files $uri $uri/ =404; | |
} | |
error_page 404 /404.html; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { | |
root /usr/share/nginx/html; | |
} | |
location ~ \.php$ { | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
} | |
location ~ /\.ht { | |
deny all; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment