Arc Forumnew | comments | leaders | submitlogin
3 points by akkartik 5245 days ago | link | parent

The mzscheme over commandline question came up recently: http://arclanguage.org/item?id=10772 Tell us if you get asv running over that.

Re apache: I usually run rails on its own port and use rewrite rules inside apache to shunt traffic to it. arc should be the same.

e.g. from my apache config:

  <VirtualHost *:80>
  RewriteEngine On

  ...

  RewriteRule ^/blog/(.*)$ http://akkartik.name:8080/blog/$1 [P,QSA,L]
  </VirtualHost>
Apache is a morass, debugging it is hell. You'll find the RewriteLog and RewriteLogLevel directives useful. Tell us if you get it working.