guides/self_hosting/services/examplewebsite.conf
2023-09-21 23:05:55 -06:00

22 lines
334 B
Text

server {
listen 80;
listen [::]:80;
server_name example.domain.xyz;
root /var/www/examplesite;
# Add index.php to the list if you are using PHP
index index.html;
location / {
try_files $uri $uri/ =404;
}
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
# fastcgi_pass unix:/run/php/php7.4-fpm.sock;
#}
}