This commit is contained in:
tavo-wasd 2023-10-30 21:51:03 -06:00
parent d2a1d5fe61
commit cf8e147476
2 changed files with 2 additions and 6 deletions

View file

@ -1,12 +1,10 @@
server { server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
server_name example.domain.xyz; server_name example.org;
location / { location / {
proxy_pass http://localhost:8080/; proxy_pass http://localhost:8080/;
} }
} }

View file

@ -1,9 +1,8 @@
server { server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
server_name example.domain.xyz; server_name example.org;
root /var/www/examplesite; root /var/www/examplesite;
@ -18,5 +17,4 @@ server {
# include snippets/fastcgi-php.conf; # include snippets/fastcgi-php.conf;
# fastcgi_pass unix:/run/php/php7.4-fpm.sock; # fastcgi_pass unix:/run/php/php7.4-fpm.sock;
#} #}
} }