URL에서 포트 제거

URL에서 포트 제거

lighttpd 서버에서 URL을 어떻게 변경할 수 있습니까 http://localhost:8080?http://localhost

구글에 검색해봤는데 안되네요..

내 현재 .conf 파일

server.document-root = "/mnt/sdcard/www"
dir-listing.activate = "enable"
server.errorlog = "/mnt/sdcard/wwwconf/server.log"

server.tag = "lighttpd/1.4.29 for Android"

server.port = 8080

index-file.names = ("index.php", "index.html", "index.htm", "home.php","home.html","home.htm")

fastcgi.server = (
  ".php" =>
        (( "host" => "127.0.0.1",
           "port" => 9003,
        ))
)
alias.url = ("/phpmyadmin" => "/data/data/com.andi.serverweb/files/phpmyadmin")

server.max-request-size = 1000000
server.network-backend = "writev"
server.upload-dirs =( "/data/data/com.andi.serverweb/files/lighttpd/tmp" )

mimetype.use-xattr  = "disable"

mimetype.assign             = (
  ".appcache"     =>    "text/cache-manifest",  
  ".pdf"          =>    "application/pdf",
  ".sig"          =>    "application/pgp-signature",
  ".spl"          =>    "application/futuresplash",
  ".class"        =>    "application/octet-stream",
  ".ps"           =>    "application/postscript",
  ".torrent"      =>    "application/x-bittorrent",
  ".dvi"          =>    "application/x-dvi",
  ".gz"           =>    "application/x-gzip",
  ".pac"          =>    "application/x-ns-proxy-autoconfig",
  ".swf"          =>    "application/x-shockwave-flash",
  ".tar.gz"       =>    "application/x-tgz",
  ".tgz"          =>    "application/x-tgz",
  ".tar"          =>    "application/x-tar",
  ".zip"          =>    "application/zip",
  ".mp3"          =>    "audio/mpeg",
  ".m3u"          =>    "audio/x-mpegurl",
  ".wma"          =>    "audio/x-ms-wma",
  ".wax"          =>    "audio/x-ms-wax",
  ".ogg"          =>    "application/ogg",
  ".wav"          =>    "audio/x-wav",
  ".gif"          =>    "image/gif",
  ".jpg"          =>    "image/jpeg",
  ".jpeg"         =>    "image/jpeg",
  ".png"          =>    "image/png",
  ".xbm"          =>    "image/x-xbitmap",
  ".xpm"          =>    "image/x-xpixmap",
  ".xwd"          =>    "image/x-xwindowdump",
  ".css"          =>    "text/css",
  ".html"         =>    "text/html",
  ".htm"          =>    "text/html",
  ".js"           =>    "text/javascript",
  ".asc"          =>    "text/plain",
  ".c"            =>    "text/plain",
  ".cpp"          =>    "text/plain",
  ".log"          =>    "text/plain",
  ".conf"         =>    "text/plain",
  ".text"         =>    "text/plain",
  ".txt"          =>    "text/plain",
  ".spec"         =>    "text/plain",
  ".dtd"          =>    "text/xml",
  ".xml"          =>    "text/xml",
  ".mpeg"         =>    "video/mpeg",
  ".mpg"          =>    "video/mpeg",
  ".mov"          =>    "video/quicktime",
  ".qt"           =>    "video/quicktime",
  ".avi"          =>    "video/x-msvideo",
  ".asf"          =>    "video/x-ms-asf",
  ".asx"          =>    "video/x-ms-asf",
  ".wmv"          =>    "video/x-ms-wmv",
  ".bz2"          =>    "application/x-bzip",
  ".tbz"          =>    "application/x-bzip-compressed-tar",
  ".tar.bz2"      =>    "application/x-bzip-compressed-tar",
  ".odt"          =>    "application/vnd.oasis.opendocument.text",
  ".ods"          =>    "application/vnd.oasis.opendocument.spreadsheet",
  ".odp"          =>    "application/vnd.oasis.opendocument.presentation",
  ".odg"          =>    "application/vnd.oasis.opendocument.graphics",
  ".odc"          =>    "application/vnd.oasis.opendocument.chart",
  ".odf"          =>    "application/vnd.oasis.opendocument.formula",
  ".odi"          =>    "application/vnd.oasis.opendocument.image",
  ".odm"          =>    "application/vnd.oasis.opendocument.text-master",
  ".ott"          =>    "application/vnd.oasis.opendocument.text-template",
  ".ots"          =>    "application/vnd.oasis.opendocument.spreadsheet-template",
  ".otp"          =>    "application/vnd.oasis.opendocument.presentation-template",
  ".otg"          =>    "application/vnd.oasis.opendocument.graphics-template",
  ".otc"          =>    "application/vnd.oasis.opendocument.chart-template",
  ".otf"          =>    "application/vnd.oasis.opendocument.formula-template",
  ".oti"          =>    "application/vnd.oasis.opendocument.image-template",
  ".oth"          =>    "application/vnd.oasis.opendocument.text-web",
  ""              =>    "application/octet-stream",
)


server.modules   = ( 
    "mod_rewrite",
    "mod_redirect",
    "mod_alias",
    "mod_access",
    "mod_auth",
    "mod_status",
    "mod_simple_vhost",
    "mod_evhost",
    "mod_userdir",
    "mod_secdownload",
    "mod_fastcgi",
    "mod_proxy",
    "mod_cgi",
    "mod_ssi",
    "mod_compress",
    "mod_usertrack",
    "mod_expire",
    "mod_rrdtool",
    "mod_accesslog" 
)

답변1

에 연결을 시도하면 http://localhost브라우저는 기본 HTTP 포트인 80을 사용합니다.

따라서 URL에서 8080을 제거하려면 웹 서버가 포트 80에서 실행되어야 합니다. 구성 파일을 잠깐 살펴보면 아마도 행을 변경해야 할 것임을 알 수 있습니다 server.port.

server.port = 80

물론 이 컴퓨터에서 포트 80을 사용하여 무언가가 이미 실행되고 있기 때문에 8080을 사용하고 있거나 다른 이유로(예: 프로그램이 루트로 실행될 수 없어 권한이 없는 등) 포트 80을 사용할 수 없는 경우 1024 미만의 포트를 열려면) 실제로는 옵션이 많지 않습니다.

관련 정보