Hello,
I know that the configuration to make this for Apache is :
[code]<VirtualHost *:80>
ServerAdmin francois@ssh.votredomaine.org
DocumentRoot /var/www
ServerName ssh.votredomaine.org
ErrorDocument 404 /deprime.html
ErrorLog /var/log/apache2/ssh-error.log
CustomLog /var/log/apache2/ssh-access.log combined
<Proxy *>
AddDefaultCharset off
Order deny,allow
Allow from all
# Deny from all
#Allow from .example.com
</Proxy>
ProxyPass / http://localhost:8888
</VirtualHost>[/code]
Maybe anybody knows how translate this in nginx configuration.