The idea is to make install guides and better descriptive files
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- server {
- server_tokens on;
- root /var/www;
- index index.php index.html index.htm;
- server_name put.your.domain.here;
- location / {
- try_files $uri $uri/ =404;}
- location ~ \.php$ {
- include snippets/fastcgi-php.conf;
- fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;}
- location ~ /\.ht {
- deny all;}
-
- }
|