2011-12-14 73 views
2

我最近在我的Ubuntu 11.10盒子上安裝了Redmine,在這裏工作, ,並從localhost/redmine工作正常。現在我正在嘗試將 放到網絡上供我辦公室的其他人使用,但在某處遇到了連接問題。我通過多線程閱讀,但還沒有找到 的答案。最新的東西是通過我的http://2222.us/redmine附加Redmine在本地主機上工作,但無法從網絡訪問?

管理平臺:: utils的:: relative_url_root = 「/管理平臺」

我試過訪問,但只收到 連接超時錯誤。我的httpd.conf中的內容只有一行

服務器名127.0.0.1

80端口監聽

#netstat的-nao | grep的80

TCP 0 0 0.0.0.0:80 0.0.0.0:* LISTEN關閉(0.00/0/0)

而且我的內容網站啓用文件管理平臺是

<VirtualHost *:80> 
    ServerAdmin [email protected] 

    DocumentRoot /var/www 
    <Directory /> 
     Options FollowSymLinks 
     AllowOverride None 
    </Directory> 
    <Directory /var/www/> 
     Options Indexes FollowSymLinks MultiViews 
     AllowOverride None 
     Order allow,deny 
     allow from all 
    </Directory> 

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ 
    <Directory "/usr/lib/cgi-bin"> 
     AllowOverride None 
     Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch 
     Order allow,deny 
     Allow from all 
    </Directory> 

    ErrorLog ${APACHE_LOG_DIR}/error.log 

    # Possible values include: debug, info, notice, warn, error, crit, 
    # alert, emerg. 
    LogLevel warn 

    CustomLog ${APACHE_LOG_DIR}/access.log combined 

    Alias /doc/ "/usr/share/doc/" 
    <Directory "/usr/share/doc/"> 
    Options Indexes MultiViews FollowSymLinks 
    AllowOverride None 
    Order deny,allow 
    Deny from all 
    Allow from 127.0.0.0/255.0.0.0 ::1/128 
    </Directory> 

    # See 
    # http://www.modrails.com/documentation/Users%20guide%20Apache.html 
    # for details on what these options do. They will lead to an increase 
    # in memory usage, but significantly reduced access times. 


    # Speeds up spawn time tremendously -- if your app is compatible. 
    # RMagick seems to be incompatible with smart spawning 
    PassengerSpawnMethod smart 


    # Keep the application instances alive longer. Default is 300 (seconds) 
    PassengerPoolIdleTime 300 


    # Additionally keep a copy of the Rails framework in memory. If you're 
    # using multiple apps on the same version of Rails, this will speed up 
    # the creation of new RailsAppSpawners. This isn't necessary if you're 
    # only running one or 2 applications, or if your applications use 
    # different versions of Rails. 
    RailsFrameworkSpawnerIdleTime 0 

    # Just in case you're leaking memory, restart a listener 
    # after processing 5000 requests 
    PassengerMaxRequests 5000 


    # Only check for restart.txt et al up to once every 5 seconds, 
    # instead of once per processed request 
    PassengerStatThrottleRate 5 

    # Specify the minimum number of instances passenger can keep 
    # while cleaning idle instances 
    PassengerMinInstances 3 

    <Location /redmine> 
     Options Indexes -ExecCGI FollowSymLinks -MultiViews 
     # AllowOverride None 
     Order allow,deny 
     Allow from all 

     # mod_rails 
     # PassengerUser redmine 
     #RailsEnv edoceo_live 
     RailsBaseURI /redmine 

     # environment.rb 
     # Redmine::Utils::relative_url_root = "/redmine"  
    </Location> 

</VirtualHost> 

# Then after the virtualhost is loaded, send it a request 
# to initialize the redmine installation 
PassengerPreStart http://2222.us/redmine/ 

它應該工作,但它不是?有人可以建議嗎?

回答

1

上帝,我笨,我使用了錯誤的IP .....

0

您可能在這裏遇到防火牆問題,或者更有可能需要在路由器上設置端口轉發,以將端口80上的流量轉發到您的Linux機器。

+0

我使用了錯誤的IP的整個時間以來,我要求谷歌爲我的IP,我應該剛剛運行ifconfig並得到了它告訴我的。 – ehime 2011-12-14 21:34:14

相關問題