Comunicação Glassfish-Eclipse

Estou estudando Java Web seguindo um curso online. Criei um projeto utilizando Eclipse Neon e Glassfish (indicado no curso) no meu Ubuntu. Até o momento eu apenas criei uma página teste em xhtml (page.xhtml) e ver se o servidor funciona. O arquivo está na raiz da pastaWebContent.
O status do servidor está [Started, Synchronized].

Porém não consigo fazer o teste funcionar. retorna a mensagem no browser.

HTTP Status 404 - Not Found
type Status report
messageNot Found
descriptionThe requested resource is not available.

GlassFish Server Open Source Edition 4.1.1

Estou tentanto acessar a página teste pelo seguinte endereço:

http://localhost:8080/GGProjJSF/page.faces

Código xhtml:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<h1>Minha primeira página JSF!</h1>
</body>
</html>

Desde já, agradeço muito a ajuda.