I am assuming that you would like to setup ajaxterm to a remote server & not really localhost.
/ ajaxtermのようなURLに設定するのは難しいでしょうが、ajaxterm.yourserver.comのようなサブドメインで簡単に設定することができます.nginxのhttpディレクティブの次の行
server {
listen 80;
server_name ajaxterm.yourserver.com;
location/{
proxy_pass http://127.0.0.1:8022;
proxy_redirect default;
}
}
This should get you http://ajaxterm.yourserver.com running for you. To get it running on https, you can tweak the instructions for apache here