Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

bstory's avatar

Adding an SSL cert through forge breaks my envoyer deployment

I just setup a new server with forge and envoyer and everything was working I then went to use forge to add an ssl cert The server now hits a 404 not found error

I have no way of knowing what the envoyer nginx config was before forge tinkered with it or how to reset it back to its working state.

Any help would be really appreciated, thanks in advance.

FORGE CONFIG (DO NOT REMOVE!)

include forge-conf/default.com/before/*;

server { listen 80; listen [::]:80; server_name default.com; root /home/forge/default.com/current/public;

# FORGE SSL (DO NOT REMOVE!)
# ssl_certificate
# ssl_certificate_key

ssl_protocols TLSv1.2;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/nginx/dhparams.pem;

add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";

index index.html index.htm index.php;

charset utf-8;

# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/default.com/server/*;

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt  { access_log off; log_not_found off; }

access_log off;
error_log  /var/log/nginx/default.com-error.log error;

error_page 404 /index.php;

location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
}

location ~ /\.(?!well-known).* {
    deny all;
}

}

FORGE CONFIG (DO NOT REMOVE!)

include forge-conf/default.com/after/*;

0 likes
0 replies

Please or to participate in this conversation.