Skip to content

Commit e040c73

Browse files
committed
Switch to using port 8080 (instead of 8081).
Fix GH #85
1 parent 0616db7 commit e040c73

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you are programmer/sysadmin or you just feeling that you are able to run loca
2727
* install Maven
2828
* clone this project
2929
* from the console inside the directory with source code, execute command `mvn clean jetty:run`
30-
* open up `http://127.0.0.1:8081` in the browser
30+
* open up `http://127.0.0.1:8080` in the browser
3131
* browse the site or log in as one of the pre-created users: `admin` / `test` or `coder` / `test`
3232
* press `Ctrl-C` to stop the server
3333

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<java.version>1.8</java.version>
5252

5353
<jetty.host>127.0.0.1</jetty.host>
54-
<jetty.port>8081</jetty.port>
54+
<jetty.port>8080</jetty.port>
5555

5656
<compiler.plugin.version>3.2</compiler.plugin.version>
5757
<resources.plugin.version>2.7</resources.plugin.version>

src/main/config/test-override-web.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!--
1616
Web console for managing H2 database.
1717
18-
Access it via http://127.0.0.1:8081/console and use "org.h2.Driver" as the driver,
18+
Access it via http://127.0.0.1:8080/console and use "org.h2.Driver" as the driver,
1919
"jdbc:h2:mem:mystamps" as the URL, "sa" as the username and a blank password.
2020
-->
2121
<servlet>

src/main/java/ru/mystamps/web/Url.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public final class Url {
3333
public static final String PUBLIC_URL = "http://my-stamps.ru";
3434

3535
// defined at pom.xml (and used by functional tests only)
36-
public static final String SITE = "http://127.0.0.1:8081";
36+
public static final String SITE = "http://127.0.0.1:8080";
3737

3838
public static final String INDEX_PAGE = "/";
3939
public static final String ROBOTS_TXT = "/robots.txt";

0 commit comments

Comments
 (0)